Parameter | Type | Description |
---|---|---|
value | decimal, double | The values from which to take the kurtosis. |
Returns: decimal
Example
query:
SELECT KURTOSIS(sales_pipeline.close_value)
FROM sales_pipeline
WHERE deal_stage = "Won"
result:
kurtosis |
---|
28.6096 |
Kurtosis statistic, a representation of how 'flat' or 'peaked' a distribution of values is, compared to a normal distribution
Parameter | Type | Description |
---|---|---|
value | decimal, double | The values from which to take the kurtosis. |
query:
SELECT KURTOSIS(sales_pipeline.close_value)
FROM sales_pipeline
WHERE deal_stage = "Won"
result:
kurtosis |
---|
28.6096 |