This function calculates bootstrap CIs for the population kurtosis. Note that we use the version of the kurtosis that equals 3 under a normal distribution, i.e., we are not calculating the excess kurtosis. By default, bootstrap type "bca" is used.
A numeric vector.
Lower and upper probabilities, by default c(0.025, 0.975)
.
Type of CI. Currently not used as the only type is "bootstrap"
.
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 <- 1:20
ci_kurtosis(x, R = 999) # Use larger R
#>
#> Two-sided 95% bootstrap confidence interval for the population kurtosis
#> based on 999 bootstrap replications and the bca method
#>
#> Sample estimate: 1.793985
#> Confidence interval:
#> 2.5% 97.5%
#> 1.375140 2.486422
#>