7 个版本 (4 个破坏性更新)
0.5.0 | 2021年4月2日 |
---|---|
0.4.1 | 2020年7月14日 |
0.3.0 | 2020年7月13日 |
0.2.1 | 2020年4月14日 |
0.1.0 | 2020年4月11日 |
在 #数据集 中排名 14
16KB
186 行
outliers
lib.rs
:
let data = [10.0, 12.0, 11.0, 15.0, 11.0, 14.0, 13.0, 17.0, 12.0, 22.0, 14.0, 11.0].to_vec();
let outlier_identifier = outliers::OutlierIdentifier::new(data, false);
let results_tuple = outlier_identifier.get_outliers().unwrap();
assert_eq!(results_tuple.0, [].to_vec()); // Lower outliers
assert_eq!(results_tuple.1, [10.0, 11.0, 11.0, 11.0, 12.0, 12.0, 13.0, 14.0, 14.0, 15.0, 17.0].to_vec()); // Non-outliers
assert_eq!(results_tuple.2, [22.0].to_vec()); // Upper outliers
依赖项
~5MB
~104K SLoC