fivenum
Tukey Five-Number Summaries
Returns Tukey's five number summary (minimum, lower-hinge, median, upper-hinge, maximum) for the input data.
- Keywords
- robust, distribution, univar
Usage
fivenum(x, na.rm = TRUE)
Arguments
Value
-
A numeric vector of length 5 containing the summary information. See
boxplot.stats
for more details.
See Also
IQR
,
boxplot.stats
,
median
,
quantile
,
range
.
Examples
library(stats)
fivenum(c(rnorm(100), -1:1/0))
Community examples
Looks like there are no examples yet.