Compute standard deviation of all data Parameters - `input` is the input Array Return Values A tuple of 64-bit floating point values with the stat values.
(input: &Array<T>)
| 629 | /// |
| 630 | /// A tuple of 64-bit floating point values with the stat values. |
| 631 | pub fn stdev_all<T: HasAfEnum>(input: &Array<T>) -> (f64, f64) { |
| 632 | stdev_all_v2(input, VarianceBias::POPULATION) |
| 633 | } |
nothing calls this directly
no test coverage detected