From 6518deb6f9e0f6b5d0e8a6997b9faf59cb8c1bd3 Mon Sep 17 00:00:00 2001 From: Dharan Aditya Date: Fri, 27 Sep 2024 17:08:11 +0530 Subject: [PATCH] cleanup --- README.md | 8 -------- src/lib.rs | 1 + 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/README.md b/README.md index 613965a..b664d8e 100644 --- a/README.md +++ b/README.md @@ -77,14 +77,6 @@ SELECT min_by(x, y) FROM VALUES (1, 10), (2, 5), (3, 15), (4, 8) as tab(x, y); -- | 2 | -- +---------------------+ --- Computes the skewness value -SELECT skewness(col) FROM VALUES (-10), (-20), (100), (1000), (1000) AS tab(col); --- Results in --- +---------------------+ --- | skewness(tab.col) | --- +---------------------+ --- | 0.574511614753 | --- +---------------------+ ``` ## Done diff --git a/src/lib.rs b/src/lib.rs index b43a55a..607d7f1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -33,6 +33,7 @@ pub mod expr_extra_fn { pub use super::max_min_by::max_by; pub use super::max_min_by::min_by; pub use super::mode::mode; + pub use super::skewness::skewness; } pub fn all_extra_aggregate_functions() -> Vec> {