plotDensity.list {aroma.light} | R Documentation |
Plots density distributions for a set of vector.
## S3 method for class 'list': plotDensity(X, xlim=NULL, ylim=NULL, xlab=NULL, ylab="density (integrates to one)", col=1:length(X), lty=NULL, lwd=NULL, ..., add=FALSE)
X |
A single of list of numeric vector s, a numeric matrix ,
or a numeric data.frame . |
xlim,ylim |
character vector of length 2. The x and y limits. |
xlab,ylab |
character string for labels on x and y axis. |
col |
The color(s) of the curves. |
lty |
The types of curves. |
lwd |
The width of curves. |
... |
Additional arguments passed to density ,
plot , and lines . |
add |
If TRUE , the curves are plotted in the current plot,
otherwise a new is created. |
Henrik Bengtsson (http://www.braju.com/R/)