> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8c05c8a2.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` — 숫자를 반환하는 [표현식](/ko/reference/syntax#expressions). [`(U)Int*`](/ko/reference/data-types/int-uint) 또는 [`Float*`](/ko/reference/data-types/float) 또는 [`Decimal`](/ko/reference/data-types/decimal)

**반환 값**

주어진 분포의 첨도를 반환합니다. [`Float64`](/ko/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 │
└────────────────────┘
```
