Function tango_bench::iqr_variance_thresholds

source ·
pub fn iqr_variance_thresholds(input: Vec<f64>) -> Option<RangeInclusive<f64>>
Expand description

Outlier detection algorithm based on interquartile range

Observations that are 1.5 IQR away from the corresponding quartile are consideted as outliers as described in original Tukey’s paper.