R/ci_location_shift.R
ci_quantile_diff.RdThis function calculates bootstrap CIs for the population value of q-quantile(x) - q-quantile(y), by default using "bca" bootstrap. Resampling is done within sample.
A numeric vector.
A numeric vector.
A single probability value determining the quantile (0.5 for median).
Lower and upper probabilities, by default c(0.025, 0.975).
Type of CI. Currently, "bootstrap" is the only option.
Type of bootstrap CI. 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().
An object of class "cint", see ci_mean() for details.
x <- 10:30
y <- 1:30
ci_quantile_diff(x, y, R = 999) # Use larger R
#>
#> Two-sided 95% bootstrap confidence interval for the population value of
#> 50% quantile(x) - 50% quantile(y) based on 999 bootstrap replications
#> and the bca method
#>
#> Sample estimate: 4.5
#> Confidence interval:
#> 2.5% 97.5%
#> -2.456763 11.000000
#>