This function calculates CIs for the population median by calling
ci_quantile(..., q = 0.5)
. See ci_quantile
for details.
ci_median(
x,
probs = c(0.025, 0.975),
type = c("binomial", "bootstrap"),
boot_type = c("bca", "perc", "norm", "basic"),
R = 9999L,
seed = NULL,
...
)
An object of class "cint" containing these components:
parameter
: Parameter specification.
interval
: CI for the parameter.
estimate
: Parameter estimate.
probs
: Lower and upper probabilities.
type
: Type of interval.
info
: Additional description.
A numeric vector.
Lower and upper probabilities, by default c(0.025, 0.975).
Type of CI. One of "binomial" (default), or "bootstrap".
Type of bootstrap CI ("bca", "perc", "norm", "basic").
Only used for type = "bootstrap"
.
The number of bootstrap resamples. Only used for type = "bootstrap"
.
An integer random seed. Only used for type = "bootstrap"
.
Further arguments passed to boot::boot()
.
ci_quantile
.