boxplot.stats {base} | R Documentation |
boxplot.stats(x, coef = 1.5)
x |
a numeric vector for which the boxplot will
be constructed ( |
coef |
this determines how far the plot “whiskers”
extend out from the box.
If |
This function is typically is called by boxplot
to
gather the statistics necessary for producing box plots,
but may be invoked separately. The value it returns is
a list with named components as follows:
stats |
a vector containing the extreme of the lower whisker, the lower “hinge”, the median, the upper “hinge” and the extreme of the upper whisker. |
n |
the number of observations in the sample. |
conf |
the lower and upper extremes of the “notch”. |
out |
the values of any data points which lie beyond the extremes of the whiskers. |
boxplot
, bxp
.
boxplot.stats(1:100)
boxplot.stats(1:100, coef = 3)
boxplot.stats(1:100, coef = 0)