mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
26 lines
471 B
Markdown
26 lines
471 B
Markdown
|
---
|
||
|
toc_priority: 150
|
||
|
---
|
||
|
|
||
|
# skewPop {#skewpop}
|
||
|
|
||
|
Computes the [skewness](https://en.wikipedia.org/wiki/Skewness) of a sequence.
|
||
|
|
||
|
``` sql
|
||
|
skewPop(expr)
|
||
|
```
|
||
|
|
||
|
**Parameters**
|
||
|
|
||
|
`expr` — [Expression](../../../sql-reference/syntax.md#syntax-expressions) returning a number.
|
||
|
|
||
|
**Returned value**
|
||
|
|
||
|
The skewness of the given distribution. Type — [Float64](../../../sql-reference/data-types/float.md)
|
||
|
|
||
|
**Example**
|
||
|
|
||
|
``` sql
|
||
|
SELECT skewPop(value) FROM series_with_value_column
|
||
|
```
|