Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support kurtosis(x) in Aggregation function #12250

Open
Tracked by #12254
Weijun-H opened this issue Aug 30, 2024 · 2 comments
Open
Tracked by #12254

Support kurtosis(x) in Aggregation function #12250

Weijun-H opened this issue Aug 30, 2024 · 2 comments
Assignees
Labels
enhancement New feature or request

Comments

@Weijun-H
Copy link
Member

Is your feature request related to a problem or challenge?

The excess kurtosis (Fisher's definition) with bias correction according to the sample size.

Describe the solution you'd like

D SELECT kurtosis(col) FROM VALUES (1), (10), (100), (10), (1) as tab(col);
┌───────────────────┐
│   kurtosis(col)   │
│      double       │
├───────────────────┤
│ 4.777292927667962 │
└───────────────────┘

Describe alternatives you've considered

No response

Additional context

https://clickhouse.com/docs/en/sql-reference/aggregate-functions/reference/kurtsamp
https://duckdb.org/docs/sql/functions/aggregates#kurtosisx

@Weijun-H Weijun-H added the enhancement New feature or request label Aug 30, 2024
@Weijun-H Weijun-H changed the title Support kurtosis(x) in Aggregation function Support kurtosis(x) in Aggregation function Aug 30, 2024
@jatin510
Copy link

take

@alamb
Copy link
Contributor

alamb commented Sep 9, 2024

Given #12357 we may want to move this function to some other repo rather than the core

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants