ClickHouse/docs/en/sql-reference/aggregate-functions/reference/kurtpop.md
Ivan Blinkov 7170f3c534
[docs] split aggregate function and system table references (#11742)
* prefer relative links from root

* wip

* split aggregate function reference

* split system tables
2020-06-18 11:24:31 +03:00

26 lines
471 B
Markdown

---
toc_priority: 153
---
# kurtPop {#kurtpop}
Computes the [kurtosis](https://en.wikipedia.org/wiki/Kurtosis) of a sequence.
``` sql
kurtPop(expr)
```
**Parameters**
`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
SELECT kurtPop(value) FROM series_with_value_column
```