trimmed_quantile {cpr} | R Documentation |
Trimmed Quantiles
Description
For data , with order
statistics
return the quantiles for a trimmed data set, e.g.,
(trim = 1), or
(trim = 2).
Usage
trimmed_quantile(x, trim = 1L, use_unique = TRUE, ...)
Arguments
x |
a numeric vector |
trim |
defaults to 1, omitting the min and the max |
use_unique |
logical, if true (defaults), base the quantiles on unique values, if false, base the quantiles on all data, after trimming. |
... |
other arguments to pass to stats::quantile |
Value
a numeric vector, the return from quantile
See Also
Examples
trimmed_quantile(1:100, prob = 1:23 / 24, name = FALSE)
# Warning
# trimmed_quantile(1:100, trim = .3, prob = 1:23 / 24, name = FALSE)
# no warning
trimmed_quantile(1:100, trim = 3, prob = 1:23 / 24, name = FALSE)
[Package cpr version 0.4.0 Index]