Curve function in R for non-standard normal distribution

294 views Asked by At

How can I use the curve function in R to draw a normal distribution curve by passing the mean and standard deviation? Not a standard normal curve, but by passing mu and sigma.

1

There are 1 answers

0
IRTFM On
curve({ dnorm(x, mean=1,sd=.5)}, -2,2)