> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-fix-nav-issues.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Computes the kurtosis of a sequence.

# kurtPop

<h2 id="kurtPop">
  kurtPop
</h2>

Introduced in: v20.1.0

Computes the [kurtosis](https://en.wikipedia.org/wiki/Kurtosis) of a sequence.

**Syntax**

```sql theme={null}
kurtPop(expr)
```

**Arguments**

* `expr` — [Expression](/reference/syntax#expressions) returning a number. [`(U)Int*`](/reference/data-types/int-uint) or [`Float*`](/reference/data-types/float) or [`Decimal`](/reference/data-types/decimal)

**Returned value**

Returns the kurtosis of the given distribution. [`Float64`](/reference/data-types/float)

**Examples**

**Computing kurtosis**

```sql title=Query theme={null}
CREATE TABLE test_data (x Float64) ENGINE = Memory;
INSERT INTO test_data VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9), (10);

SELECT kurtPop(x) FROM test_data;
```

```response title=Response theme={null}
┌─────────kurtPop(x)─┐
│ 1.7757575757575756 │
└────────────────────┘
```
