This help topic is for R version 0.90. For the current version of R, try https://stat.ethz.ch/R-manual/R-patched/library/base/html/fivenum.html
fivenum {base}R Documentation

Tukey Five-Number Summaries

Usage

fivenum(x, na.rm = TRUE)

Arguments

x

numeric, maybe including NA's and +/-Infs.

na.rm

logical; if TRUE, all NA and NaNs are dropped, before the statistics are computed.

Value

A five number summary (minimum, lower-hinge, median, upper-hinge, maximum) for the (non NA) numbers in x.

See Also

IQR, boxplot.stats, median, quantile, range.

Examples

fivenum(c(rnorm(100),-1:1/0))

[Package base version 0.90 ]