Skip to content

Commit b98c6bb

Browse files
author
jatin
committed
updated readme file for kurtosis function
1 parent 23ffedd commit b98c6bb

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

README.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,6 @@ SELECT min_by(x, y) FROM VALUES (1, 10), (2, 5), (3, 15), (4, 8) as tab(x, y);
7777
-- | 2 |
7878
-- +---------------------+
7979

80-
-- Get the kurtosis value of a column of numeric data.
81-
SELECT kurtosis(col) FROM VALUES (1.0), (10.0), (100.0), (10.0), (1.0) as tab(col);
82-
-- Results in
83-
- +-------------------+
84-
- "| kurtosis(tab.col) |"
85-
- +-------------------+
86-
- "| 4.777292927667962 |"
87-
- +-------------------+
8880

8981
```
9082

@@ -94,5 +86,4 @@ SELECT kurtosis(col) FROM VALUES (1.0), (10.0), (100.0), (10.0), (1.0) as tab(co
9486
- [x] `max_by(expression1, expression2) -> scalar` - Returns the value of `expression1` associated with the maximum value of `expression2`.
9587
- [x] `min_by(expression1, expression2) -> scalar` - Returns the value of `expression1` associated with the minimum value of `expression2`.
9688
- [x] `kurtois_pop(expression) -> scalar` - Computes the excess kurtosis (Fisher’s definition) without bias correction.
97-
98-
- [x] `kurtosis(expression) -> scalar` - Returns the kurtosis, a measure of the `tailedness` of the distribution, for the given numeric values in `expression`.
89+
- [x] `kurtosis(expression) -> scalar` - Computes the excess kurtosis (Fisher’s definition) with bias correction according to the sample size.

0 commit comments

Comments
 (0)