Computes the absolute coefficient of variationcv as proposed by Karl Pearson. This coefficient is given by the division of the standard deviation by the mean. As the CV reflects a normalized measure of the dispersion of a given probability distribution, values for $cv < 1$ are considered low-variance, while those with $cv > 1$ high-variance.
Usage
cv(x, na.rm = TRUE, ...)
## S3 method for class 'default':
cv(x, na.rm = TRUE, ...)
Arguments
x
A numeric vector.
na.rm
A logical value, default is FALSE
...
Additional arguements (currently ignored)
Value
The coefficient of variation.
encoding
UTF-8
Details
$\frac{sd(x)}{mean(x)} = cv$, which is the inverse of signal-to-noise ratio.