pub fn grubbs_test(values: &[f64], alpha: f64) -> Option<GrubbsResult>Expand description
Grubbs’ test for the single most extreme value (assumes approximate normality).
alpha is the significance level (e.g. 0.05). Reuses the Student-t quantile for the
critical value. None if fewer than 3 points or zero spread.