powered by
Construct a cell which has the 3 interquartile ranges specified.
nejm_iqr( x, format = NA, na.rm = TRUE, names = FALSE, type = 8, msd = FALSE, quant = c(0.25, 0.5, 0.75), ... )
A cell_quantile object.
numeric vector whose sample quantiles are wanted. NA and NaN values are not allowed in numeric vectors unless na.rm is TRUE.
numeric or character; Significant digits or fmt to pass to sprintf
logical; if true, any NA and NaN's are removed from x before the quantiles are computed.
logical; if true, the result has a names attribute. Set to FALSE for speedup with many probs.
integer; specify algorithm to use in constructing quantile. See quantile for more information.
logical; compute an msd attribute containing mean and standard deviation
numeric; The quantiles to display. Should be an odd length vector, since the center value is highlighted.
additional arguments to constructing cell
require(stats) nejm_iqr(rnorm(100), '3')
Run the code above in your browser using DataLab