quantile_ci {swash} | R Documentation |
Computing Quantiles for a given Numeric Vector
Description
Computes quantiles for a given vector x
and the related confidence intervals (lower
, upper
).
Usage
quantile_ci(
x,
alpha = 0.05
)
Arguments
x |
A numeric vector |
alpha |
Significance level |
Details
Helper function for plot(sbm_ci)
, but may be used separately.
Value
A numeric vector with lower and upper quantile
Author(s)
Thomas Wieland
Examples
numeric_vector <- c(1,9,5,6,3,10,20,6,9,14,3,5,8,6,11)
# any numeric vector
quantile_ci(numeric_vector)
[Package swash version 1.2.2 Index]