2020-06-18 08:24:31 +00:00
|
|
|
---
|
|
|
|
toc_priority: 153
|
|
|
|
---
|
|
|
|
|
|
|
|
# kurtPop {#kurtpop}
|
|
|
|
|
|
|
|
Computes the [kurtosis](https://en.wikipedia.org/wiki/Kurtosis) of a sequence.
|
|
|
|
|
|
|
|
``` sql
|
|
|
|
kurtPop(expr)
|
|
|
|
```
|
|
|
|
|
2021-02-15 21:33:53 +00:00
|
|
|
**Arguments**
|
2020-06-18 08:24:31 +00:00
|
|
|
|
|
|
|
`expr` — [Expression](../../../sql-reference/syntax.md#syntax-expressions) returning a number.
|
|
|
|
|
|
|
|
**Returned value**
|
|
|
|
|
|
|
|
The kurtosis of the given distribution. Type — [Float64](../../../sql-reference/data-types/float.md)
|
|
|
|
|
|
|
|
**Example**
|
|
|
|
|
|
|
|
``` sql
|
2021-03-13 18:18:45 +00:00
|
|
|
SELECT kurtPop(value) FROM series_with_value_column;
|
2020-06-18 08:24:31 +00:00
|
|
|
```
|