cv.Rd
Computes the coefficient of variation of input vector.
cv(x, na.rm = FALSE)
Input vector to compute CV for.
boolean to remove NA. default is FALSE
CV of x. Standard deviation divided by mean. If you want % you'll need to multiply by 100
cv(c(1, 2, 1, 1, 2, 1, 2, 3)) #> [1] 0.4578608