
This function can be used to compute confidence intervals for the (classical) coefficient of variation.
cvCI(x, conf.level = 0.95, method = "miller", na.rm = FALSE)
A list with class "confint"
containing the following components:
the estimated coefficient of variation.
a confidence interval for the coefficient of variation.
numeric vector.
confidence level
character string specifing which method to use; see details.
logical. Should missing values be removed?
Matthias Kohl Matthias.Kohl@stamats.de
For details about the confidence intervals we refer to Gulhar et al (2012) and Arachchige et al (2019).
C.N.P.G. Arachchige, L.A. Prendergast and R.G. Staudte (2019). Robust analogues to the Coefficient of Variation. https://arxiv.org/abs/1907.01110.
M. Gulhar, G. Kibria, A. Albatineh, N.U. Ahmed (2012). A comparison of some confidence intervals for estimating the population coefficient of variation: a simulation study. Sort, 36(1), 45-69.
CV
x <- rnorm(100, mean = 10, sd = 2) # CV = 0.2
cvCI(x, method = "miller")
cvCI(x, method = "sharma")
cvCI(x, method = "curto")
cvCI(x, method = "mckay")
cvCI(x, method = "vangel")
cvCI(x, method = "panichkitkosolkul")
cvCI(x, method = "medmiller")
cvCI(x, method = "medmckay")
cvCI(x, method = "medvangel")
cvCI(x, method = "medcurto")
cvCI(x, method = "gulhar")
Run the code above in your browser using DataLab