| 7 | */ |
| 8 | |
| 9 | export class Statistic { |
| 10 | static calculateCoefficientOfVariation(sample: number[], mean: number) { |
| 11 | return (Statistic.calculateStandardDeviation(sample, mean) / mean) * 100; |
| 12 | } |
nothing calls this directly
no outgoing calls
no test coverage detected