Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Dharan Aditya committed Sep 27, 2024
1 parent c60b73e commit 6518deb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
8 changes: 0 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Arc<AggregateUDF>> {
Expand Down

0 comments on commit 6518deb

Please sign in to comment.