panel.histogram {lattice} | R Documentation |
This is the default panel function for histogram
.
panel.histogram(x, breaks, equal.widths = TRUE, type = "density", nint = round(log2(length(x)) + 1), alpha, col, border, lty, lwd, ..., include.lowest = TRUE, right = TRUE)
x |
The data points for which the histogram is to be drawn |
breaks |
The breakpoints for the histogram |
equal.widths |
logical used when breaks==NULL |
type |
Type of histogram, possible values being "percent" ,
"density" and "count" |
nint |
Number of bins for the histogram |
alpha, col, border, lty, lwd |
graphical parameters for bars; defaults are obtained from the
plot.polygon settings.
|
... |
other arguments, currently ignored. |
include.lowest, right |
passed to hist |
Deepayan Sarkar Deepayan.Sarkar@R-project.org