ClickHouse/docs/en/sql-reference/aggregate-functions/reference/skewpop.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
526 B
Markdown
Raw Normal View History

---
2022-08-28 14:53:34 +00:00
slug: /en/sql-reference/aggregate-functions/reference/skewpop
sidebar_position: 150
---
2022-06-02 10:55:18 +00:00
# skewPop
Computes the [skewness](https://en.wikipedia.org/wiki/Skewness) of a sequence.
``` sql
skewPop(expr)
```
**Arguments**
`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;
```