Calculate coefficient of variation
coefficient.of.variation.RdTakes a vector and calculates the ratio of the standard deviation to the mean (coefficient of variation, CV)
Arguments
- x
 Vector of numbers to analyze
- na.rm
 A logical indicating whether or not to ignore (remove) missing values
Examples
coefficient.of.variation(
  x = rnorm(100)
  );
#> [1] -1205.211