Learn R Programming

cmstatr (version 0.9.3)

calc_cv_star: Calculate the modified CV from the CV

Description

This function calculates the modified coefficient of variation (CV) based on a (unmodified) CV. The modified CV is calculated based on the rules in CMH-17-1G. Those rules are:

  • For CV < 4\%, CV* = 6\%

  • For 4\% <= CV < 8\%, CV* = CV / 2 + 4\%

  • For CV > 8\%, CV* = CV

Usage

calc_cv_star(cv)

Value

The value of the modified CV

Arguments

cv

The CV to modify

References

"Composite Materials Handbook, Volume 1. Polymer Matrix Composites Guideline for Characterization of Structural Materials," SAE International, CMH-17-1G, Mar. 2012.

See Also

cv()

Examples

Run this code
# The modified CV for values of CV smaller than 4% is 6%
calc_cv_star(0.01)
## [1] 0.06

# The modified CV for values of CV larger than 8% is unchanged
calc_cv_star(0.09)
## [1] 0.09

Run the code above in your browser using DataLab