ClickHouse/docs/zh/sql-reference/aggregate-functions/reference/covarsamp.md

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

20 lines
511 B
Markdown
Raw Normal View History

2021-02-02 12:00:41 +00:00
---
2022-08-26 19:07:59 +00:00
slug: /zh/sql-reference/aggregate-functions/reference/covarsamp
2022-04-10 23:08:18 +00:00
sidebar_position: 37
2021-02-02 12:00:41 +00:00
---
# covarSamp {#covarsamp}
2021-02-03 15:22:18 +00:00
**语法**
``` sql
2021-03-18 16:02:22 +00:00
covarSamp(x, y)
2021-02-03 15:22:18 +00:00
```
2021-02-02 12:00:41 +00:00
2021-02-03 15:22:18 +00:00
计算 `Σ((x - x̅)(y - y̅)) / (n - 1)` 的值。
2021-02-02 12:00:41 +00:00
2021-02-03 15:22:18 +00:00
返回Float64。 当 `n <= 1`, 返回 +∞。
2023-03-03 10:35:07 +00:00
:::note
该函数使用数值不稳定的算法。 如果你需要 [数值稳定性](https://en.wikipedia.org/wiki/Numerical_stability) 在计算中,使用 `covarSampStable` 函数。 它的工作速度较慢,但提供较低的计算错误。
:::