fivenum {base} | R Documentation |
fivenum(x, na.rm = TRUE)
x |
numeric, maybe including NA 's and +/-Inf s. |
na.rm |
logical; if TRUE , all NA and
NaN s are dropped, before the statistics are computed. |
A five number summary (minimum, lower-hinge, median,
upper-hinge, maximum) for the (non NA
) numbers in x
.
IQR
, boxplot.stats
, median
,
quantile
, range
.
fivenum(c(rnorm(100),-1:1/0))