Quantile
From resample v0.4
by Tim Hesterberg
Compute quantiles using type = 6
Front end to quantile, using type = 6 (appropriate for resampling)
- Keywords
- univar
Usage
Quantile(x, ..., type = 6)
Arguments
- x
-
resample
object, numerical object, or other object with a method forquantile
. - ...
-
Other arguments passed to
quantile
. - type
-
With
type=6
and 99 observations, the k% quantile is the k'th smallest observation; this corresponds to equal probability above the largest observation, below the smallest observation, and between each pair of adjacent observations.
Details
This is a front end to quantile
.
Value
-
A vector or matrix of quantiles.
See Also
Examples
quantile(1:9, .2)
Quantile(1:9, .2)
Community examples
Looks like there are no examples yet.