Description Arguments Examples
The R6 class SampleQuantiles
produces the sample
quantiles corresponding to the given probabilities. It uses
quantile from the package stats.
x |
An |
na.rm |
a logical value indicating whether |
digits |
integer indicating the number of decimal places to be used. |
probs |
numeric vector of probabilities with values in |
names |
logical; if TRUE, the result has a names attribute regarding the percentiles. |
type |
an integer between 1 and 9 selecting one of the nine quantile algorithms explained in quantile to be used. |
1 2 3 4 5 6 7 8 9 10 | x <- c(
0.2, 0.5, 1.1, 1.4, 1.8, 2.3, 2.5, 2.7, 3.5, 4.4,
4.6, 5.4, 5.4, 5.7, 5.8, 5.9, 6.0, 6.6, 7.1, 7.9
)
SampleQuantiles$new(x)$qx()
percentile_95 <- SampleQuantiles$new(x, na.rm = TRUE, digits = 2, probs = 0.95)
percentile_95$qx()
percentile_75 <- SampleQuantiles$new(x, na.rm = TRUE, digits = 3, probs = 0.75)
percentile_75$qx()
R6::is.R6(percentile_95)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.