Skip to content

Commit

Permalink
updated readme file for kurtosis function
Browse files Browse the repository at this point in the history
  • Loading branch information
jatin committed Sep 27, 2024
1 parent 23ffedd commit b98c6bb
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 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 |
-- +---------------------+

-- Get the kurtosis value of a column of numeric data.
SELECT kurtosis(col) FROM VALUES (1.0), (10.0), (100.0), (10.0), (1.0) as tab(col);
-- Results in
- +-------------------+
- "| kurtosis(tab.col) |"
- +-------------------+
- "| 4.777292927667962 |"
- +-------------------+

```

Expand All @@ -94,5 +86,4 @@ SELECT kurtosis(col) FROM VALUES (1.0), (10.0), (100.0), (10.0), (1.0) as tab(co
- [x] `max_by(expression1, expression2) -> scalar` - Returns the value of `expression1` associated with the maximum value of `expression2`.
- [x] `min_by(expression1, expression2) -> scalar` - Returns the value of `expression1` associated with the minimum value of `expression2`.
- [x] `kurtois_pop(expression) -> scalar` - Computes the excess kurtosis (Fisher’s definition) without bias correction.

- [x] `kurtosis(expression) -> scalar` - Returns the kurtosis, a measure of the `tailedness` of the distribution, for the given numeric values in `expression`.
- [x] `kurtosis(expression) -> scalar` - Computes the excess kurtosis (Fisher’s definition) with bias correction according to the sample size.

0 comments on commit b98c6bb

Please sign in to comment.