I would like to plot a nice, 'approaching the limit'-looking normal pdf in ggplot.
I found that to get a very symmetric and clean looking plot, I had to crank up the number of samples to a rather large number; one million creates a great visualization. However, this is pretty slow, especially if I hope to work with Shiny at some point.
df <- data.frame(c(rnorm(1000000)))
ggplot(df, aes(df[1])) + geom_density()
Surely there is a better way to display something close to the ideal normal distribution?