aboutsummaryrefslogtreecommitdiff
path: root/src/stats/univariate/outliers/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/stats/univariate/outliers/mod.rs')
-rwxr-xr-xsrc/stats/univariate/outliers/mod.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/stats/univariate/outliers/mod.rs b/src/stats/univariate/outliers/mod.rs
new file mode 100755
index 0000000..b8ed7c7
--- /dev/null
+++ b/src/stats/univariate/outliers/mod.rs
@@ -0,0 +1,7 @@
+//! Classification of outliers
+//!
+//! WARNING: There's no formal/mathematical definition of what an outlier actually is. Therefore,
+//! all outlier classifiers are *subjective*, however some classifiers that have become *de facto*
+//! standard are provided here.
+
+pub mod tukey;