pub fn bonferroni_correction(p_values: &[f64]) -> Option<Vec<f64>>Expand description
Bonferroni correction: adjusts p-values for multiple comparisons.
adjusted_pᵢ = min(pᵢ × m, 1.0) where m = number of tests.
§Returns
None if the slice is empty or contains non-finite values.