hist(x, nclass = <<see below>>, breaks = <<see below>>, plot = T, probability = F, include.lowest = T, ..., xlab = deparse(substitute(x)))
Graphical parameters may also be supplied as arguments to this function (see par). In addition, the high-level graphics arguments described under par and the arguments to title may be supplied to this function.
if plot is FALSE, hist returns a list with components:
If plot is TRUE, then hist calls barplot.
my.sample <- rt(50, 5) lab <- "50 samples from a t distribution with 5 d.f." hist(my.sample, main = lab)