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

> 数列の尖度を計算します。

# kurtPop

<div id="kurtPop">
  ## kurtPop
</div>

導入バージョン: v20.1.0

数列の[尖度](https://en.wikipedia.org/wiki/Kurtosis)を計算します。

**構文**

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

**引数**

* `expr` — 数値を返す[式](/ja/reference/syntax#expressions)。[`(U)Int*`](/ja/reference/data-types/int-uint)、[`Float*`](/ja/reference/data-types/float)、または [`Decimal`](/ja/reference/data-types/decimal)

**戻り値**

指定された分布の尖度を返します。[`Float64`](/ja/reference/data-types/float)

**例**

**尖度を計算する**

```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 │
└────────────────────┘
```
