mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 20:24:07 +00:00
27 lines
526 B
Markdown
27 lines
526 B
Markdown
---
|
|
slug: /en/sql-reference/aggregate-functions/reference/kurtpop
|
|
sidebar_position: 157
|
|
---
|
|
|
|
# kurtPop
|
|
|
|
Computes the [kurtosis](https://en.wikipedia.org/wiki/Kurtosis) of a sequence.
|
|
|
|
``` sql
|
|
kurtPop(expr)
|
|
```
|
|
|
|
**Arguments**
|
|
|
|
`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;
|
|
```
|