plot probability density function (pdf)
x=rnorm(100,1,0.8) # A series. y=rnorm(100,0,0.5) # Another series with different mean and variance. plot(density(x),ylim=c(0,1)) lines(density(y),col="red") Remember that density() is a nonparametric estimator. You should properly choose the bandwith. -- View this message in context: http://r.789695.n4.nabble.com/plot-probability-density-function-pdf-tp3897055p3897747.html Sent from the R help mailing list archive at Nabble.com.