Is there a method to overlay something analogous to a density curve when the vertical axis is frequency or relative frequency?  (Not an actual density function, since the area need not integrate to 1.)  The following question is similar:
ggplot2: histogram with normal curve, and the user self-answers with the idea to scale ..count.. inside of geom_density().  However this seems unusual.  
The following code produces an overinflated "density" line.
df1            <- data.frame(v = rnorm(164, mean = 9, sd = 1.5))
b1             <- seq(4.5, 12, by = 0.1)
hist.1a        <- ggplot(df1, aes(v)) + 
                    stat_bin(aes(y = ..count..), color = "black", fill = "blue",
                             breaks = b1) + 
                    geom_density(aes(y = ..count..))
hist.1a

 
     
    





 
    
