Posit Community
How to add a standard normal distribution curve on my histogram?
General
fcas80
March 21, 2021, 9:34pm
2
x <- seq(-4., 4., by = .01)
y <- dnorm(x, mean = 0, sd = 1)
plot(x,y, col="blue")
1 Like
show post in topic