pub fn std_dev<T>(data: &[T]) -> StatsResult<f64>where
T: ToPrimitive + Debug,Expand description
Population standard deviation — alias for std_dev_population.
Kept for v2.x source-compatibility. Use std_dev_sample when you
need the Bessel-corrected estimator.