I'm interested in creating an example plot (ideally using ggplot) that will display two normal curves with different means and different standard deviations. I've discovered ggplot's stat_function() argument but am not sure how to get a second curve on the same plot.
This code produces one curve:
ggplot(data.frame(x = c(-4, 4)), aes(x)) + stat_function(fun = dnorm)
Any advice on ways to get a second curve? Or maybe simpler to do in base package plotting?