I'm trying to plot a histogram with a normal curve overlay and all I get is a red line for the normal curve. Any ideas what's happening?
ggplot(data.frame, aes(data.frame$colunm)) + geom_histogram(bins = 150)
+ stat_function(fun = dnorm, colour = "red",
args = list(mean = 134.7093, sd = 555.3832)) + scale_y_sqrt() +scale_x_log10()