This function calculates bootstrap CIs (default: "bca") for the population median
absolute deviation (MAD), see stats::mad()
for more information.
A numeric vector.
Lower and upper probabilities, by default c(0.025, 0.975)
.
Scaling factor applied. The default (1.4826) ensures that the MAD equals the standard deviation for a theoretical normal distribution.
Type of CI. Currently not used as the only type is "bootstrap"
.
Type of bootstrap CI c("bca", "perc", "norm", "basic").
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 <- rnorm(100)
ci_mad(x, R = 999) # Use larger R
#>
#> Two-sided 95% bootstrap confidence interval for the population MAD
#> based on 999 bootstrap replications and the bca method
#>
#> Sample estimate: 0.9477103
#> Confidence interval:
#> 2.5% 97.5%
#> 0.7345421 1.1605401
#>