On 4/27/05, Achim Zeileis <[EMAIL PROTECTED]> wrote:
> > I would like to draw a picture with the density curve of a normal
> > distribution over a histogram of a set of random numbers extracted
> > from the same normal distribution. Is that possible?
> 
> To quote Simon `Yoda' Blomberg: "This is R. There is no if. Only how."
> (see fortune("Yoda"))
> 
> Try:
> 
> R> x <- rnorm(100)
> R> hist(x, freq = FALSE)
> R> curve(dnorm, col = 2, add = TRUE)

Fantastic! Thanks a lot, Achim.

Paul

______________________________________________
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to