-
Notifications
You must be signed in to change notification settings - Fork 2k
Closed
datafusion-contrib/datafusion-extra-functions
#6Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem or challenge?
Returns the skewness value calculated from values of a group.
Describe the solution you'd like
D SELECT skewness(col) FROM VALUES (-10), (-20), (100), (1000), (1000) AS tab(col);
┌────────────────────┐
│ skewness(col) │
│ double │
├────────────────────┤
│ 0.5745116147533554 │
└────────────────────┘
Describe alternatives you've considered
No response
Additional context
https://docs.databricks.com/en/sql/language-manual/functions/skewness.html
https://duckdb.org/docs/sql/functions/aggregates#skewnessx
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request