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.

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to