[R] plot probability density function (pdf)
jdospina
jdospina at gmail.com
Wed Oct 12 14:03:48 CEST 2011
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.
More information about the R-help
mailing list