Skip to main content

kurtPop

Introduced in: v20.1.0 Computes the kurtosis of a sequence. Syntax
kurtPop(expr)
Arguments Returned value Returns the kurtosis of the given distribution. Float64 Examples Computing kurtosis
Query
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
┌─────────kurtPop(x)─┐
│ 1.7757575757575756 │
└────────────────────┘
Last modified on June 8, 2026