R/calc.CV.R

#' Calculate coefficient of variation
#'
#' @param x Vector of indicator values.

calc.CV <-
    function(x)
{
    sqrt(calc.VAR(x))/mean(x)
}
dataspekt/crodi documentation built on May 30, 2019, 4:06 a.m.