| plotDistr {Rcmdr} | R Documentation |
This function plots a probability density, mass, or distribution function, adapting the form of the plot as appropriate.
plotDistr(x, p, discrete=FALSE, cdf=FALSE, ...)
x |
horizontal coordinates |
p |
vertical coordinates |
discrete |
is the random variable discrete? |
cdf |
is this a cumulative distribution (as opposed to mass) function? |
... |
arguments to be passed to |
Produces a plot; returns NULL invisibly.
John Fox jfox@mcmaster.ca
x <- seq(-4, 4, length=100) plotDistr(x, dnorm(x), xlab="Z", ylab="p(z)", main="Standard Normal Density")