
Last chance! 50% off unlimited learning
Sale ends in
This function plots density or cumulative distribution function of multiple histograms in a single plot, using lines.
plotMultiHist(
data,
nBreaks = 100,
col = 1:length(data),
scaleBy = c("area", "max", "none"),
cumulative = FALSE,
...)
Invisibly,
A list with one component per histogram (component of data
), giving the bin midpoints
A list with one component per histogram (component of data
), giving the scaled bin counts
A list in which each component corresponds to a separate histogram and is a vector of values to be shown in each histogram.
Number of breaks in the combined plot.
Color of the lines. Should be a vector of the same length as data
.
Method to make the different histograms comparable. The counts are scaled such that either the total area or the maximum are the same for all histograms, or the histograms are shown without scaling.
Logical: should the cumulative distribution be shown instead of the density?
Other graphical arguments.
Peter Langfelder
data = list(rnorm(1000), rnorm(10000) + 2);
plotMultiHist(data, xlab = "value", ylab = "scaled density")
Run the code above in your browser using DataLab