plotBinHist {monaLisa} | R Documentation |
Plot a histogram of binned elements with binning information.
plotBinHist( x, b, breaks = 10 * nlevels(b), xlab = deparse(substitute(x, env = as.environment(-1))), ylab = "Frequency", main = "", legend = "topright", legend.cex = 1, ... )
x |
A numerical vector with the values used for binning. |
b |
A factor that groups elements of |
breaks |
Controls the histogram breaks (passed to |
xlab |
Label for x-axis. |
ylab |
Label for y-axis. |
main |
Main title. |
legend |
If not |
legend.cex |
A scalar that controls the text size in the legend relative
to the current |
... |
Further arguments passed to |
Invisibly the return value of hist(...)
that generated the
plot.
set.seed(1) x <- rnorm(100) b <- bin(x, "equalN", nElements = 10) plotBinHist(x, b)