ci_median_diff {confintr} | R Documentation |
CI for the Population Median Difference of two Samples
Description
This function calculates bootstrap CIs for the population value of
median(x) - median(y) by calling ci_quantile_diff()
.
Usage
ci_median_diff(
x,
y,
probs = c(0.025, 0.975),
type = "bootstrap",
boot_type = c("bca", "perc", "norm", "basic"),
R = 9999L,
seed = NULL,
...
)
Arguments
x |
A numeric vector. |
y |
A numeric vector. |
probs |
Lower and upper probabilities, by default |
type |
Type of CI. Currently, "bootstrap" is the only option. |
boot_type |
Type of bootstrap CI. Only used for |
R |
The number of bootstrap resamples. Only used for |
seed |
An integer random seed. Only used for |
... |
Further arguments passed to |
Value
An object of class "cint", see ci_mean()
for details.
See Also
Examples
x <- 10:30
y <- 1:30
ci_median_diff(x, y, R = 999) # Use larger value for R
[Package confintr version 1.0.2 Index]