pub fn standard_deviation(dataset: &Vec<f64>, mu: f64) -> f64
Expand description

Standard deviation

Difined as the square root of the deviation.

Again notice that that is a difference between population::standard_deviation and sample::standard_deviation, as they make use of different variance functions.