powered by
Return nine number summary (minimum, 1st-3rd octiles, median, 5th-7th octiles, maximum) for the input data.
ninenum(x, na.rm=TRUE)
numeric, maybe including NAs and +/-Infs.
NA
Inf
logical value indicating whether NAs should be stripped before the computation proceeds.
A numeric vector of length 9 containing the summary information.
This function is similar to fivenum. This returns octiles instead of quartiles of the fivenum.
fivenum
Quantiles: median, quartiles, octiles, hexadeciles, … https://tomizonor.wordpress.com/2013/04/28/quantiles-octiles/
midpoints, seventeennum, fivenum, median.
midpoints
seventeennum
median
# NOT RUN { ninenum(1:100) ninenum(c(rnorm(100), -Inf, Inf)) # }
Run the code above in your browser using DataLab