Skip to main content
Skip to main content

kurtPop

kurtPop

Introduced in: v20.1

Computes the kurtosis of a sequence.

Syntax

kurtPop(expr)

Arguments

Returned value

Returns the kurtosis of the given distribution. Float64

Examples

Computing kurtosis

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;
┌─────────kurtPop(x)─┐
│ 1.7757575757575756 │
└────────────────────┘