mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
Merge pull request #64626 from Blargian/doc_covarXYZ
Document functions `corr`, `covar`, and their variants
This commit is contained in:
commit
a3faaa2129
@ -5,10 +5,57 @@ sidebar_position: 107
|
|||||||
|
|
||||||
# corr
|
# corr
|
||||||
|
|
||||||
Syntax: `corr(x, y)`
|
Calculates the [Pearson correlation coefficient](https://en.wikipedia.org/wiki/Pearson_correlation_coefficient):
|
||||||
|
|
||||||
|
$$
|
||||||
|
\frac{\Sigma{(x - \bar{x})(y - \bar{y})}}{\sqrt{\Sigma{(x - \bar{x})^2} * \Sigma{(y - \bar{y})^2}}}
|
||||||
|
$$
|
||||||
|
|
||||||
Calculates the Pearson correlation coefficient: `Σ((x - x̅)(y - y̅)) / sqrt(Σ((x - x̅)^2) * Σ((y - y̅)^2))`.
|
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This function uses a numerically unstable algorithm. If you need [numerical stability](https://en.wikipedia.org/wiki/Numerical_stability) in calculations, use the `corrStable` function. It works slower but provides a lower computational error.
|
This function uses a numerically unstable algorithm. If you need [numerical stability](https://en.wikipedia.org/wiki/Numerical_stability) in calculations, use the [`corrStable`](../reference/corrstable.md) function. It is slower but provides a more accurate result.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
|
**Syntax**
|
||||||
|
|
||||||
|
```sql
|
||||||
|
corr(x, y)
|
||||||
|
```
|
||||||
|
|
||||||
|
**Arguments**
|
||||||
|
|
||||||
|
- `x` — first variable. [(U)Int*](../../data-types/int-uint.md), [Float*](../../data-types/float.md), [Decimal](../../data-types/decimal.md).
|
||||||
|
- `y` — second variable. [(U)Int*](../../data-types/int-uint.md), [Float*](../../data-types/float.md), [Decimal](../../data-types/decimal.md).
|
||||||
|
|
||||||
|
**Returned Value**
|
||||||
|
|
||||||
|
- The Pearson correlation coefficient. [Float64](../../data-types/float.md).
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
Query:
|
||||||
|
|
||||||
|
```sql
|
||||||
|
DROP TABLE IF EXISTS series;
|
||||||
|
CREATE TABLE series
|
||||||
|
(
|
||||||
|
i UInt32,
|
||||||
|
x_value Float64,
|
||||||
|
y_value Float64
|
||||||
|
)
|
||||||
|
ENGINE = Memory;
|
||||||
|
INSERT INTO series(i, x_value, y_value) VALUES (1, 5.6, -4.4),(2, -9.6, 3),(3, -1.3, -4),(4, 5.3, 9.7),(5, 4.4, 0.037),(6, -8.6, -7.8),(7, 5.1, 9.3),(8, 7.9, -3.6),(9, -8.2, 0.62),(10, -3, 7.3);
|
||||||
|
```
|
||||||
|
|
||||||
|
```sql
|
||||||
|
SELECT corr(x_value, y_value)
|
||||||
|
FROM series;
|
||||||
|
```
|
||||||
|
|
||||||
|
Result:
|
||||||
|
|
||||||
|
```response
|
||||||
|
┌─corr(x_value, y_value)─┐
|
||||||
|
│ 0.1730265755453256 │
|
||||||
|
└────────────────────────┘
|
||||||
|
```
|
||||||
|
@ -0,0 +1,55 @@
|
|||||||
|
---
|
||||||
|
slug: /en/sql-reference/aggregate-functions/reference/corrmatrix
|
||||||
|
sidebar_position: 108
|
||||||
|
---
|
||||||
|
|
||||||
|
# corrMatrix
|
||||||
|
|
||||||
|
Computes the correlation matrix over N variables.
|
||||||
|
|
||||||
|
**Syntax**
|
||||||
|
|
||||||
|
```sql
|
||||||
|
corrMatrix(x[, ...])
|
||||||
|
```
|
||||||
|
|
||||||
|
**Arguments**
|
||||||
|
|
||||||
|
- `x` — a variable number of parameters. [(U)Int*](../../data-types/int-uint.md), [Float*](../../data-types/float.md), [Decimal](../../data-types/decimal.md).
|
||||||
|
|
||||||
|
**Returned value**
|
||||||
|
|
||||||
|
- Correlation matrix. [Array](../../data-types/array.md)([Array](../../data-types/array.md)([Float64](../../data-types/float.md))).
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
Query:
|
||||||
|
|
||||||
|
```sql
|
||||||
|
DROP TABLE IF EXISTS test;
|
||||||
|
CREATE TABLE test
|
||||||
|
(
|
||||||
|
a UInt32,
|
||||||
|
b Float64,
|
||||||
|
c Float64,
|
||||||
|
d Float64
|
||||||
|
)
|
||||||
|
ENGINE = Memory;
|
||||||
|
INSERT INTO test(a, b, c, d) VALUES (1, 5.6, -4.4, 2.6), (2, -9.6, 3, 3.3), (3, -1.3, -4, 1.2), (4, 5.3, 9.7, 2.3), (5, 4.4, 0.037, 1.222), (6, -8.6, -7.8, 2.1233), (7, 5.1, 9.3, 8.1222), (8, 7.9, -3.6, 9.837), (9, -8.2, 0.62, 8.43555), (10, -3, 7.3, 6.762);
|
||||||
|
```
|
||||||
|
|
||||||
|
```sql
|
||||||
|
SELECT arrayMap(x -> round(x, 3), arrayJoin(corrMatrix(a, b, c, d))) AS corrMatrix
|
||||||
|
FROM test;
|
||||||
|
```
|
||||||
|
|
||||||
|
Result:
|
||||||
|
|
||||||
|
```response
|
||||||
|
┌─corrMatrix─────────────┐
|
||||||
|
1. │ [1,-0.096,0.243,0.746] │
|
||||||
|
2. │ [-0.096,1,0.173,0.106] │
|
||||||
|
3. │ [0.243,0.173,1,0.258] │
|
||||||
|
4. │ [0.746,0.106,0.258,1] │
|
||||||
|
└────────────────────────┘
|
||||||
|
```
|
@ -0,0 +1,58 @@
|
|||||||
|
---
|
||||||
|
slug: /en/sql-reference/aggregate-functions/reference/corrstable
|
||||||
|
sidebar_position: 107
|
||||||
|
---
|
||||||
|
|
||||||
|
# corrStable
|
||||||
|
|
||||||
|
Calculates the [Pearson correlation coefficient](https://en.wikipedia.org/wiki/Pearson_correlation_coefficient):
|
||||||
|
|
||||||
|
$$
|
||||||
|
\frac{\Sigma{(x - \bar{x})(y - \bar{y})}}{\sqrt{\Sigma{(x - \bar{x})^2} * \Sigma{(y - \bar{y})^2}}}
|
||||||
|
$$
|
||||||
|
|
||||||
|
Similar to the [`corr`](../reference/corr.md) function, but uses a numerically stable algorithm. As a result, `corrStable` is slower than `corr` but produces a more accurate result.
|
||||||
|
|
||||||
|
**Syntax**
|
||||||
|
|
||||||
|
```sql
|
||||||
|
corrStable(x, y)
|
||||||
|
```
|
||||||
|
|
||||||
|
**Arguments**
|
||||||
|
|
||||||
|
- `x` — first variable. [(U)Int*](../../data-types/int-uint.md), [Float*](../../data-types/float.md), [Decimal](../../data-types/decimal.md).
|
||||||
|
- `y` — second variable. [(U)Int*](../../data-types/int-uint.md), [Float*](../../data-types/float.md), [Decimal](../../data-types/decimal.md).
|
||||||
|
|
||||||
|
**Returned Value**
|
||||||
|
|
||||||
|
- The Pearson correlation coefficient. [Float64](../../data-types/float.md).
|
||||||
|
|
||||||
|
***Example**
|
||||||
|
|
||||||
|
Query:
|
||||||
|
|
||||||
|
```sql
|
||||||
|
DROP TABLE IF EXISTS series;
|
||||||
|
CREATE TABLE series
|
||||||
|
(
|
||||||
|
i UInt32,
|
||||||
|
x_value Float64,
|
||||||
|
y_value Float64
|
||||||
|
)
|
||||||
|
ENGINE = Memory;
|
||||||
|
INSERT INTO series(i, x_value, y_value) VALUES (1, 5.6, -4.4),(2, -9.6, 3),(3, -1.3, -4),(4, 5.3, 9.7),(5, 4.4, 0.037),(6, -8.6, -7.8),(7, 5.1, 9.3),(8, 7.9, -3.6),(9, -8.2, 0.62),(10, -3, 7.3);
|
||||||
|
```
|
||||||
|
|
||||||
|
```sql
|
||||||
|
SELECT corrStable(x_value, y_value)
|
||||||
|
FROM series;
|
||||||
|
```
|
||||||
|
|
||||||
|
Result:
|
||||||
|
|
||||||
|
```response
|
||||||
|
┌─corrStable(x_value, y_value)─┐
|
||||||
|
│ 0.17302657554532558 │
|
||||||
|
└──────────────────────────────┘
|
||||||
|
```
|
@ -1,14 +1,54 @@
|
|||||||
---
|
---
|
||||||
slug: /en/sql-reference/aggregate-functions/reference/covarpop
|
slug: /en/sql-reference/aggregate-functions/reference/covarpop
|
||||||
sidebar_position: 36
|
sidebar_position: 37
|
||||||
---
|
---
|
||||||
|
|
||||||
# covarPop
|
# covarPop
|
||||||
|
|
||||||
Syntax: `covarPop(x, y)`
|
Calculates the population covariance:
|
||||||
|
|
||||||
Calculates the value of `Σ((x - x̅)(y - y̅)) / n`.
|
$$
|
||||||
|
\frac{\Sigma{(x - \bar{x})(y - \bar{y})}}{n}
|
||||||
|
$$
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This function uses a numerically unstable algorithm. If you need [numerical stability](https://en.wikipedia.org/wiki/Numerical_stability) in calculations, use the `covarPopStable` function. It works slower but provides a lower computational error.
|
This function uses a numerically unstable algorithm. If you need [numerical stability](https://en.wikipedia.org/wiki/Numerical_stability) in calculations, use the [`covarPopStable`](../reference/covarpopstable.md) function. It works slower but provides a lower computational error.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
|
**Syntax**
|
||||||
|
|
||||||
|
```sql
|
||||||
|
covarPop(x, y)
|
||||||
|
```
|
||||||
|
|
||||||
|
**Arguments**
|
||||||
|
|
||||||
|
- `x` — first variable. [(U)Int*](../../data-types/int-uint.md), [Float*](../../data-types/float.md), [Decimal](../../data-types/decimal.md).
|
||||||
|
- `y` — second variable. [(U)Int*](../../data-types/int-uint.md), [Float*](../../data-types/float.md), [Decimal](../../data-types/decimal.md).
|
||||||
|
|
||||||
|
**Returned Value**
|
||||||
|
|
||||||
|
- The population covariance between `x` and `y`. [Float64](../../data-types/float.md).
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
Query:
|
||||||
|
|
||||||
|
```sql
|
||||||
|
DROP TABLE IF EXISTS series;
|
||||||
|
CREATE TABLE series(i UInt32, x_value Float64, y_value Float64) ENGINE = Memory;
|
||||||
|
INSERT INTO series(i, x_value, y_value) VALUES (1, 5.6, -4.4),(2, -9.6, 3),(3, -1.3, -4),(4, 5.3, 9.7),(5, 4.4, 0.037),(6, -8.6, -7.8),(7, 5.1, 9.3),(8, 7.9, -3.6),(9, -8.2, 0.62),(10, -3, 7.3);
|
||||||
|
```
|
||||||
|
|
||||||
|
```sql
|
||||||
|
SELECT covarPop(x_value, y_value)
|
||||||
|
FROM series;
|
||||||
|
```
|
||||||
|
|
||||||
|
Result:
|
||||||
|
|
||||||
|
```reference
|
||||||
|
┌─covarPop(x_value, y_value)─┐
|
||||||
|
│ 6.485648 │
|
||||||
|
└────────────────────────────┘
|
||||||
|
```
|
||||||
|
@ -0,0 +1,55 @@
|
|||||||
|
---
|
||||||
|
slug: /en/sql-reference/aggregate-functions/reference/covarpopmatrix
|
||||||
|
sidebar_position: 36
|
||||||
|
---
|
||||||
|
|
||||||
|
# covarPopMatrix
|
||||||
|
|
||||||
|
Returns the population covariance matrix over N variables.
|
||||||
|
|
||||||
|
**Syntax**
|
||||||
|
|
||||||
|
```sql
|
||||||
|
covarPopMatrix(x[, ...])
|
||||||
|
```
|
||||||
|
|
||||||
|
**Arguments**
|
||||||
|
|
||||||
|
- `x` — a variable number of parameters. [(U)Int*](../../data-types/int-uint.md), [Float*](../../data-types/float.md), [Decimal](../../data-types/decimal.md).
|
||||||
|
|
||||||
|
**Returned Value**
|
||||||
|
|
||||||
|
- Population covariance matrix. [Array](../../data-types/array.md)([Array](../../data-types/array.md)([Float64](../../data-types/float.md))).
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
Query:
|
||||||
|
|
||||||
|
```sql
|
||||||
|
DROP TABLE IF EXISTS test;
|
||||||
|
CREATE TABLE test
|
||||||
|
(
|
||||||
|
a UInt32,
|
||||||
|
b Float64,
|
||||||
|
c Float64,
|
||||||
|
d Float64
|
||||||
|
)
|
||||||
|
ENGINE = Memory;
|
||||||
|
INSERT INTO test(a, b, c, d) VALUES (1, 5.6, -4.4, 2.6), (2, -9.6, 3, 3.3), (3, -1.3, -4, 1.2), (4, 5.3, 9.7, 2.3), (5, 4.4, 0.037, 1.222), (6, -8.6, -7.8, 2.1233), (7, 5.1, 9.3, 8.1222), (8, 7.9, -3.6, 9.837), (9, -8.2, 0.62, 8.43555), (10, -3, 7.3, 6.762);
|
||||||
|
```
|
||||||
|
|
||||||
|
```sql
|
||||||
|
SELECT arrayMap(x -> round(x, 3), arrayJoin(covarPopMatrix(a, b, c, d))) AS covarPopMatrix
|
||||||
|
FROM test;
|
||||||
|
```
|
||||||
|
|
||||||
|
Result:
|
||||||
|
|
||||||
|
```reference
|
||||||
|
┌─covarPopMatrix────────────┐
|
||||||
|
1. │ [8.25,-1.76,4.08,6.748] │
|
||||||
|
2. │ [-1.76,41.07,6.486,2.132] │
|
||||||
|
3. │ [4.08,6.486,34.21,4.755] │
|
||||||
|
4. │ [6.748,2.132,4.755,9.93] │
|
||||||
|
└───────────────────────────┘
|
||||||
|
```
|
@ -0,0 +1,60 @@
|
|||||||
|
---
|
||||||
|
slug: /en/sql-reference/aggregate-functions/reference/covarpopstable
|
||||||
|
sidebar_position: 36
|
||||||
|
---
|
||||||
|
|
||||||
|
# covarPopStable
|
||||||
|
|
||||||
|
Calculates the value of the population covariance:
|
||||||
|
|
||||||
|
$$
|
||||||
|
\frac{\Sigma{(x - \bar{x})(y - \bar{y})}}{n}
|
||||||
|
$$
|
||||||
|
|
||||||
|
It is similar to the [covarPop](../reference/covarpop.md) function, but uses a numerically stable algorithm. As a result, `covarPopStable` is slower than `covarPop` but produces a more accurate result.
|
||||||
|
|
||||||
|
|
||||||
|
**Syntax**
|
||||||
|
|
||||||
|
```sql
|
||||||
|
covarPop(x, y)
|
||||||
|
```
|
||||||
|
|
||||||
|
**Arguments**
|
||||||
|
|
||||||
|
- `x` — first variable. [(U)Int*](../../data-types/int-uint.md), [Float*](../../data-types/float.md), [Decimal](../../data-types/decimal.md).
|
||||||
|
- `y` — second variable. [(U)Int*](../../data-types/int-uint.md), [Float*](../../data-types/float.md), [Decimal](../../data-types/decimal.md).
|
||||||
|
|
||||||
|
**Returned Value**
|
||||||
|
|
||||||
|
- The population covariance between `x` and `y`. [Float64](../../data-types/float.md).
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
Query:
|
||||||
|
|
||||||
|
```sql
|
||||||
|
DROP TABLE IF EXISTS series;
|
||||||
|
CREATE TABLE series(i UInt32, x_value Float64, y_value Float64) ENGINE = Memory;
|
||||||
|
INSERT INTO series(i, x_value, y_value) VALUES (1, 5.6,-4.4),(2, -9.6,3),(3, -1.3,-4),(4, 5.3,9.7),(5, 4.4,0.037),(6, -8.6,-7.8),(7, 5.1,9.3),(8, 7.9,-3.6),(9, -8.2,0.62),(10, -3,7.3);
|
||||||
|
```
|
||||||
|
|
||||||
|
```sql
|
||||||
|
SELECT covarPopStable(x_value, y_value)
|
||||||
|
FROM
|
||||||
|
(
|
||||||
|
SELECT
|
||||||
|
x_value,
|
||||||
|
y_value
|
||||||
|
FROM series
|
||||||
|
);
|
||||||
|
```
|
||||||
|
|
||||||
|
Result:
|
||||||
|
|
||||||
|
```reference
|
||||||
|
┌─covarPopStable(x_value, y_value)─┐
|
||||||
|
│ 6.485648 │
|
||||||
|
└──────────────────────────────────┘
|
||||||
|
```
|
||||||
|
|
@ -7,8 +7,74 @@ sidebar_position: 37
|
|||||||
|
|
||||||
Calculates the value of `Σ((x - x̅)(y - y̅)) / (n - 1)`.
|
Calculates the value of `Σ((x - x̅)(y - y̅)) / (n - 1)`.
|
||||||
|
|
||||||
Returns Float64. When `n <= 1`, returns `nan`.
|
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
This function uses a numerically unstable algorithm. If you need [numerical stability](https://en.wikipedia.org/wiki/Numerical_stability) in calculations, use the `covarSampStable` function. It works slower but provides a lower computational error.
|
This function uses a numerically unstable algorithm. If you need [numerical stability](https://en.wikipedia.org/wiki/Numerical_stability) in calculations, use the [`covarSampStable`](../reference/covarsamp.md) function. It works slower but provides a lower computational error.
|
||||||
:::
|
:::
|
||||||
|
|
||||||
|
**Syntax**
|
||||||
|
|
||||||
|
```sql
|
||||||
|
covarSamp(x, y)
|
||||||
|
```
|
||||||
|
|
||||||
|
**Arguments**
|
||||||
|
|
||||||
|
- `x` — first variable. [(U)Int*](../../data-types/int-uint.md), [Float*](../../data-types/float.md), [Decimal](../../data-types/decimal.md).
|
||||||
|
- `y` — second variable. [(U)Int*](../../data-types/int-uint.md), [Float*](../../data-types/float.md), [Decimal](../../data-types/decimal.md).
|
||||||
|
|
||||||
|
**Returned Value**
|
||||||
|
|
||||||
|
- The sample covariance between `x` and `y`. For `n <= 1`, `nan` is returned. [Float64](../../data-types/float.md).
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
Query:
|
||||||
|
|
||||||
|
```sql
|
||||||
|
DROP TABLE IF EXISTS series;
|
||||||
|
CREATE TABLE series(i UInt32, x_value Float64, y_value Float64) ENGINE = Memory;
|
||||||
|
INSERT INTO series(i, x_value, y_value) VALUES (1, 5.6,-4.4),(2, -9.6,3),(3, -1.3,-4),(4, 5.3,9.7),(5, 4.4,0.037),(6, -8.6,-7.8),(7, 5.1,9.3),(8, 7.9,-3.6),(9, -8.2,0.62),(10, -3,7.3);
|
||||||
|
```
|
||||||
|
|
||||||
|
```sql
|
||||||
|
SELECT covarSamp(x_value, y_value)
|
||||||
|
FROM
|
||||||
|
(
|
||||||
|
SELECT
|
||||||
|
x_value,
|
||||||
|
y_value
|
||||||
|
FROM series
|
||||||
|
);
|
||||||
|
```
|
||||||
|
|
||||||
|
Result:
|
||||||
|
|
||||||
|
```reference
|
||||||
|
┌─covarSamp(x_value, y_value)─┐
|
||||||
|
│ 7.206275555555556 │
|
||||||
|
└─────────────────────────────┘
|
||||||
|
```
|
||||||
|
|
||||||
|
Query:
|
||||||
|
|
||||||
|
```sql
|
||||||
|
SELECT covarSamp(x_value, y_value)
|
||||||
|
FROM
|
||||||
|
(
|
||||||
|
SELECT
|
||||||
|
x_value,
|
||||||
|
y_value
|
||||||
|
FROM series LIMIT 1
|
||||||
|
);
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
Result:
|
||||||
|
|
||||||
|
```reference
|
||||||
|
┌─covarSamp(x_value, y_value)─┐
|
||||||
|
│ nan │
|
||||||
|
└─────────────────────────────┘
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
@ -0,0 +1,57 @@
|
|||||||
|
---
|
||||||
|
slug: /en/sql-reference/aggregate-functions/reference/covarsampmatrix
|
||||||
|
sidebar_position: 38
|
||||||
|
---
|
||||||
|
|
||||||
|
# covarSampMatrix
|
||||||
|
|
||||||
|
Returns the sample covariance matrix over N variables.
|
||||||
|
|
||||||
|
**Syntax**
|
||||||
|
|
||||||
|
```sql
|
||||||
|
covarSampMatrix(x[, ...])
|
||||||
|
```
|
||||||
|
|
||||||
|
**Arguments**
|
||||||
|
|
||||||
|
- `x` — a variable number of parameters. [(U)Int*](../../data-types/int-uint.md), [Float*](../../data-types/float.md), [Decimal](../../data-types/decimal.md).
|
||||||
|
|
||||||
|
**Returned Value**
|
||||||
|
|
||||||
|
- Sample covariance matrix. [Array](../../data-types/array.md)([Array](../../data-types/array.md)([Float64](../../data-types/float.md))).
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
Query:
|
||||||
|
|
||||||
|
```sql
|
||||||
|
DROP TABLE IF EXISTS test;
|
||||||
|
CREATE TABLE test
|
||||||
|
(
|
||||||
|
a UInt32,
|
||||||
|
b Float64,
|
||||||
|
c Float64,
|
||||||
|
d Float64
|
||||||
|
)
|
||||||
|
ENGINE = Memory;
|
||||||
|
INSERT INTO test(a, b, c, d) VALUES (1, 5.6, -4.4, 2.6), (2, -9.6, 3, 3.3), (3, -1.3, -4, 1.2), (4, 5.3, 9.7, 2.3), (5, 4.4, 0.037, 1.222), (6, -8.6, -7.8, 2.1233), (7, 5.1, 9.3, 8.1222), (8, 7.9, -3.6, 9.837), (9, -8.2, 0.62, 8.43555), (10, -3, 7.3, 6.762);
|
||||||
|
```
|
||||||
|
|
||||||
|
```sql
|
||||||
|
SELECT arrayMap(x -> round(x, 3), arrayJoin(covarSampMatrix(a, b, c, d))) AS covarSampMatrix
|
||||||
|
FROM test;
|
||||||
|
```
|
||||||
|
|
||||||
|
Result:
|
||||||
|
|
||||||
|
```reference
|
||||||
|
┌─covarSampMatrix─────────────┐
|
||||||
|
1. │ [9.167,-1.956,4.534,7.498] │
|
||||||
|
2. │ [-1.956,45.634,7.206,2.369] │
|
||||||
|
3. │ [4.534,7.206,38.011,5.283] │
|
||||||
|
4. │ [7.498,2.369,5.283,11.034] │
|
||||||
|
└─────────────────────────────┘
|
||||||
|
```
|
||||||
|
|
||||||
|
|
@ -0,0 +1,73 @@
|
|||||||
|
---
|
||||||
|
slug: /en/sql-reference/aggregate-functions/reference/covarsampstable
|
||||||
|
sidebar_position: 37
|
||||||
|
---
|
||||||
|
|
||||||
|
# covarSampStable
|
||||||
|
|
||||||
|
Calculates the value of `Σ((x - x̅)(y - y̅)) / (n - 1)`. Similar to [covarSamp](../reference/covarsamp.md) but works slower while providing a lower computational error.
|
||||||
|
|
||||||
|
**Syntax**
|
||||||
|
|
||||||
|
```sql
|
||||||
|
covarSampStable(x, y)
|
||||||
|
```
|
||||||
|
|
||||||
|
**Arguments**
|
||||||
|
|
||||||
|
- `x` — first variable. [(U)Int*](../../data-types/int-uint.md), [Float*](../../data-types/float.md), [Decimal](../../data-types/decimal.md).
|
||||||
|
- `y` — second variable. [(U)Int*](../../data-types/int-uint.md), [Float*](../../data-types/float.md), [Decimal](../../data-types/decimal.md).
|
||||||
|
|
||||||
|
**Returned Value**
|
||||||
|
|
||||||
|
- The sample covariance between `x` and `y`. For `n <= 1`, `inf` is returned. [Float64](../../data-types/float.md).
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
Query:
|
||||||
|
|
||||||
|
```sql
|
||||||
|
DROP TABLE IF EXISTS series;
|
||||||
|
CREATE TABLE series(i UInt32, x_value Float64, y_value Float64) ENGINE = Memory;
|
||||||
|
INSERT INTO series(i, x_value, y_value) VALUES (1, 5.6,-4.4),(2, -9.6,3),(3, -1.3,-4),(4, 5.3,9.7),(5, 4.4,0.037),(6, -8.6,-7.8),(7, 5.1,9.3),(8, 7.9,-3.6),(9, -8.2,0.62),(10, -3,7.3);
|
||||||
|
```
|
||||||
|
|
||||||
|
```sql
|
||||||
|
SELECT covarSampStable(x_value, y_value)
|
||||||
|
FROM
|
||||||
|
(
|
||||||
|
SELECT
|
||||||
|
x_value,
|
||||||
|
y_value
|
||||||
|
FROM series
|
||||||
|
);
|
||||||
|
```
|
||||||
|
|
||||||
|
Result:
|
||||||
|
|
||||||
|
```reference
|
||||||
|
┌─covarSampStable(x_value, y_value)─┐
|
||||||
|
│ 7.206275555555556 │
|
||||||
|
└───────────────────────────────────┘
|
||||||
|
```
|
||||||
|
|
||||||
|
Query:
|
||||||
|
|
||||||
|
```sql
|
||||||
|
SELECT covarSampStable(x_value, y_value)
|
||||||
|
FROM
|
||||||
|
(
|
||||||
|
SELECT
|
||||||
|
x_value,
|
||||||
|
y_value
|
||||||
|
FROM series LIMIT 1
|
||||||
|
);
|
||||||
|
```
|
||||||
|
|
||||||
|
Result:
|
||||||
|
|
||||||
|
```reference
|
||||||
|
┌─covarSampStable(x_value, y_value)─┐
|
||||||
|
│ inf │
|
||||||
|
└───────────────────────────────────┘
|
||||||
|
```
|
@ -9,110 +9,116 @@ toc_hidden: true
|
|||||||
|
|
||||||
Standard aggregate functions:
|
Standard aggregate functions:
|
||||||
|
|
||||||
- [count](/docs/en/sql-reference/aggregate-functions/reference/count.md)
|
- [count](../reference/count.md)
|
||||||
- [min](/docs/en/sql-reference/aggregate-functions/reference/min.md)
|
- [min](../reference/min.md)
|
||||||
- [max](/docs/en/sql-reference/aggregate-functions/reference/max.md)
|
- [max](../reference/max.md)
|
||||||
- [sum](/docs/en/sql-reference/aggregate-functions/reference/sum.md)
|
- [sum](../reference/sum.md)
|
||||||
- [avg](/docs/en/sql-reference/aggregate-functions/reference/avg.md)
|
- [avg](../reference/avg.md)
|
||||||
- [any](/docs/en/sql-reference/aggregate-functions/reference/any.md)
|
- [any](../reference/any.md)
|
||||||
- [stddevPop](/docs/en/sql-reference/aggregate-functions/reference/stddevpop.md)
|
- [stddevPop](../reference/stddevpop.md)
|
||||||
- [stddevPopStable](/docs/en/sql-reference/aggregate-functions/reference/stddevpopstable.md)
|
- [stddevPopStable](../reference/stddevpopstable.md)
|
||||||
- [stddevSamp](/docs/en/sql-reference/aggregate-functions/reference/stddevsamp.md)
|
- [stddevSamp](../reference/stddevsamp.md)
|
||||||
- [stddevSampStable](/docs/en/sql-reference/aggregate-functions/reference/stddevsampstable.md)
|
- [stddevSampStable](../reference/stddevsampstable.md)
|
||||||
- [varPop](/docs/en/sql-reference/aggregate-functions/reference/varpop.md)
|
- [varPop](../reference/varpop.md)
|
||||||
- [varSamp](/docs/en/sql-reference/aggregate-functions/reference/varsamp.md)
|
- [varSamp](../reference/varsamp.md)
|
||||||
- [corr](./corr.md)
|
- [corr](../reference/corr.md)
|
||||||
- [covarPop](/docs/en/sql-reference/aggregate-functions/reference/covarpop.md)
|
- [corr](../reference/corrstable.md)
|
||||||
- [covarSamp](/docs/en/sql-reference/aggregate-functions/reference/covarsamp.md)
|
- [corrMatrix](../reference/corrmatrix.md)
|
||||||
- [entropy](./entropy.md)
|
- [covarPop](../reference/covarpop.md)
|
||||||
- [exponentialMovingAverage](./exponentialmovingaverage.md)
|
- [covarStable](../reference/covarpopstable.md)
|
||||||
- [intervalLengthSum](./intervalLengthSum.md)
|
- [covarPopMatrix](../reference/covarpopmatrix.md)
|
||||||
- [kolmogorovSmirnovTest](./kolmogorovsmirnovtest.md)
|
- [covarSamp](../reference/covarsamp.md)
|
||||||
- [mannwhitneyutest](./mannwhitneyutest.md)
|
- [covarSampStable](../reference/covarsampstable.md)
|
||||||
- [median](./median.md)
|
- [covarSampMatrix](../reference/covarsampmatrix.md)
|
||||||
- [rankCorr](./rankCorr.md)
|
- [entropy](../reference/entropy.md)
|
||||||
- [sumKahan](./sumkahan.md)
|
- [exponentialMovingAverage](../reference/exponentialmovingaverage.md)
|
||||||
- [studentTTest](./studentttest.md)
|
- [intervalLengthSum](../reference/intervalLengthSum.md)
|
||||||
- [welchTTest](./welchttest.md)
|
- [kolmogorovSmirnovTest](../reference/kolmogorovsmirnovtest.md)
|
||||||
|
- [mannwhitneyutest](../reference/mannwhitneyutest.md)
|
||||||
|
- [median](../reference/median.md)
|
||||||
|
- [rankCorr](../reference/rankCorr.md)
|
||||||
|
- [sumKahan](../reference/sumkahan.md)
|
||||||
|
- [studentTTest](../reference/studentttest.md)
|
||||||
|
- [welchTTest](../reference/welchttest.md)
|
||||||
|
|
||||||
ClickHouse-specific aggregate functions:
|
ClickHouse-specific aggregate functions:
|
||||||
|
|
||||||
- [analysisOfVariance](/docs/en/sql-reference/aggregate-functions/reference/analysis_of_variance.md)
|
- [analysisOfVariance](../reference/analysis_of_variance.md)
|
||||||
- [any](/docs/en/sql-reference/aggregate-functions/reference/any_respect_nulls.md)
|
- [any](../reference/any_respect_nulls.md)
|
||||||
- [anyHeavy](/docs/en/sql-reference/aggregate-functions/reference/anyheavy.md)
|
- [anyHeavy](../reference/anyheavy.md)
|
||||||
- [anyLast](/docs/en/sql-reference/aggregate-functions/reference/anylast.md)
|
- [anyLast](../reference/anylast.md)
|
||||||
- [anyLast](/docs/en/sql-reference/aggregate-functions/reference/anylast_respect_nulls.md)
|
- [anyLast](../reference/anylast_respect_nulls.md)
|
||||||
- [boundingRatio](/docs/en/sql-reference/aggregate-functions/reference/boundrat.md)
|
- [boundingRatio](../reference/boundrat.md)
|
||||||
- [first_value](/docs/en/sql-reference/aggregate-functions/reference/first_value.md)
|
- [first_value](../reference/first_value.md)
|
||||||
- [last_value](/docs/en/sql-reference/aggregate-functions/reference/last_value.md)
|
- [last_value](../reference/last_value.md)
|
||||||
- [argMin](/docs/en/sql-reference/aggregate-functions/reference/argmin.md)
|
- [argMin](../reference/argmin.md)
|
||||||
- [argMax](/docs/en/sql-reference/aggregate-functions/reference/argmax.md)
|
- [argMax](../reference/argmax.md)
|
||||||
- [avgWeighted](/docs/en/sql-reference/aggregate-functions/reference/avgweighted.md)
|
- [avgWeighted](../reference/avgweighted.md)
|
||||||
- [topK](/docs/en/sql-reference/aggregate-functions/reference/topk.md)
|
- [topK](../reference/topk.md)
|
||||||
- [topKWeighted](/docs/en/sql-reference/aggregate-functions/reference/topkweighted.md)
|
- [topKWeighted](../reference/topkweighted.md)
|
||||||
- [deltaSum](./deltasum.md)
|
- [deltaSum](../reference/deltasum.md)
|
||||||
- [deltaSumTimestamp](./deltasumtimestamp.md)
|
- [deltaSumTimestamp](../reference/deltasumtimestamp.md)
|
||||||
- [groupArray](/docs/en/sql-reference/aggregate-functions/reference/grouparray.md)
|
- [groupArray](../reference/grouparray.md)
|
||||||
- [groupArrayLast](/docs/en/sql-reference/aggregate-functions/reference/grouparraylast.md)
|
- [groupArrayLast](../reference/grouparraylast.md)
|
||||||
- [groupUniqArray](/docs/en/sql-reference/aggregate-functions/reference/groupuniqarray.md)
|
- [groupUniqArray](../reference/groupuniqarray.md)
|
||||||
- [groupArrayInsertAt](/docs/en/sql-reference/aggregate-functions/reference/grouparrayinsertat.md)
|
- [groupArrayInsertAt](../reference/grouparrayinsertat.md)
|
||||||
- [groupArrayMovingAvg](/docs/en/sql-reference/aggregate-functions/reference/grouparraymovingavg.md)
|
- [groupArrayMovingAvg](../reference/grouparraymovingavg.md)
|
||||||
- [groupArrayMovingSum](/docs/en/sql-reference/aggregate-functions/reference/grouparraymovingsum.md)
|
- [groupArrayMovingSum](../reference/grouparraymovingsum.md)
|
||||||
- [groupArraySample](./grouparraysample.md)
|
- [groupArraySample](../reference/grouparraysample.md)
|
||||||
- [groupArraySorted](/docs/en/sql-reference/aggregate-functions/reference/grouparraysorted.md)
|
- [groupArraySorted](../reference/grouparraysorted.md)
|
||||||
- [groupArrayIntersect](./grouparrayintersect.md)
|
- [groupArrayIntersect](../reference/grouparrayintersect.md)
|
||||||
- [groupBitAnd](/docs/en/sql-reference/aggregate-functions/reference/groupbitand.md)
|
- [groupBitAnd](../reference/groupbitand.md)
|
||||||
- [groupBitOr](/docs/en/sql-reference/aggregate-functions/reference/groupbitor.md)
|
- [groupBitOr](../reference/groupbitor.md)
|
||||||
- [groupBitXor](/docs/en/sql-reference/aggregate-functions/reference/groupbitxor.md)
|
- [groupBitXor](../reference/groupbitxor.md)
|
||||||
- [groupBitmap](/docs/en/sql-reference/aggregate-functions/reference/groupbitmap.md)
|
- [groupBitmap](../reference/groupbitmap.md)
|
||||||
- [groupBitmapAnd](/docs/en/sql-reference/aggregate-functions/reference/groupbitmapand.md)
|
- [groupBitmapAnd](../reference/groupbitmapand.md)
|
||||||
- [groupBitmapOr](/docs/en/sql-reference/aggregate-functions/reference/groupbitmapor.md)
|
- [groupBitmapOr](../reference/groupbitmapor.md)
|
||||||
- [groupBitmapXor](/docs/en/sql-reference/aggregate-functions/reference/groupbitmapxor.md)
|
- [groupBitmapXor](../reference/groupbitmapxor.md)
|
||||||
- [sumWithOverflow](/docs/en/sql-reference/aggregate-functions/reference/sumwithoverflow.md)
|
- [sumWithOverflow](../reference/sumwithoverflow.md)
|
||||||
- [sumMap](/docs/en/sql-reference/aggregate-functions/reference/summap.md)
|
- [sumMap](../reference/summap.md)
|
||||||
- [sumMapWithOverflow](/docs/en/sql-reference/aggregate-functions/reference/summapwithoverflow.md)
|
- [sumMapWithOverflow](../reference/summapwithoverflow.md)
|
||||||
- [sumMapFiltered](/docs/en/sql-reference/aggregate-functions/parametric-functions.md/#summapfiltered)
|
- [sumMapFiltered](../parametric-functions.md/#summapfiltered)
|
||||||
- [sumMapFilteredWithOverflow](/docs/en/sql-reference/aggregate-functions/parametric-functions.md/#summapfilteredwithoverflow)
|
- [sumMapFilteredWithOverflow](../parametric-functions.md/#summapfilteredwithoverflow)
|
||||||
- [minMap](/docs/en/sql-reference/aggregate-functions/reference/minmap.md)
|
- [minMap](../reference/minmap.md)
|
||||||
- [maxMap](/docs/en/sql-reference/aggregate-functions/reference/maxmap.md)
|
- [maxMap](../reference/maxmap.md)
|
||||||
- [skewSamp](/docs/en/sql-reference/aggregate-functions/reference/skewsamp.md)
|
- [skewSamp](../reference/skewsamp.md)
|
||||||
- [skewPop](/docs/en/sql-reference/aggregate-functions/reference/skewpop.md)
|
- [skewPop](../reference/skewpop.md)
|
||||||
- [kurtSamp](/docs/en/sql-reference/aggregate-functions/reference/kurtsamp.md)
|
- [kurtSamp](../reference/kurtsamp.md)
|
||||||
- [kurtPop](/docs/en/sql-reference/aggregate-functions/reference/kurtpop.md)
|
- [kurtPop](../reference/kurtpop.md)
|
||||||
- [uniq](/docs/en/sql-reference/aggregate-functions/reference/uniq.md)
|
- [uniq](../reference/uniq.md)
|
||||||
- [uniqExact](/docs/en/sql-reference/aggregate-functions/reference/uniqexact.md)
|
- [uniqExact](../reference/uniqexact.md)
|
||||||
- [uniqCombined](/docs/en/sql-reference/aggregate-functions/reference/uniqcombined.md)
|
- [uniqCombined](../reference/uniqcombined.md)
|
||||||
- [uniqCombined64](/docs/en/sql-reference/aggregate-functions/reference/uniqcombined64.md)
|
- [uniqCombined64](../reference/uniqcombined64.md)
|
||||||
- [uniqHLL12](/docs/en/sql-reference/aggregate-functions/reference/uniqhll12.md)
|
- [uniqHLL12](../reference/uniqhll12.md)
|
||||||
- [uniqTheta](/docs/en/sql-reference/aggregate-functions/reference/uniqthetasketch.md)
|
- [uniqTheta](../reference/uniqthetasketch.md)
|
||||||
- [quantile](/docs/en/sql-reference/aggregate-functions/reference/quantile.md)
|
- [quantile](../reference/quantile.md)
|
||||||
- [quantiles](/docs/en/sql-reference/aggregate-functions/reference/quantiles.md)
|
- [quantiles](../reference/quantiles.md)
|
||||||
- [quantileExact](/docs/en/sql-reference/aggregate-functions/reference/quantileexact.md)
|
- [quantileExact](../reference/quantileexact.md)
|
||||||
- [quantileExactLow](/docs/en/sql-reference/aggregate-functions/reference/quantileexact.md#quantileexactlow)
|
- [quantileExactLow](../reference/quantileexact.md#quantileexactlow)
|
||||||
- [quantileExactHigh](/docs/en/sql-reference/aggregate-functions/reference/quantileexact.md#quantileexacthigh)
|
- [quantileExactHigh](../reference/quantileexact.md#quantileexacthigh)
|
||||||
- [quantileExactWeighted](/docs/en/sql-reference/aggregate-functions/reference/quantileexactweighted.md)
|
- [quantileExactWeighted](../reference/quantileexactweighted.md)
|
||||||
- [quantileTiming](/docs/en/sql-reference/aggregate-functions/reference/quantiletiming.md)
|
- [quantileTiming](../reference/quantiletiming.md)
|
||||||
- [quantileTimingWeighted](/docs/en/sql-reference/aggregate-functions/reference/quantiletimingweighted.md)
|
- [quantileTimingWeighted](../reference/quantiletimingweighted.md)
|
||||||
- [quantileDeterministic](/docs/en/sql-reference/aggregate-functions/reference/quantiledeterministic.md)
|
- [quantileDeterministic](../reference/quantiledeterministic.md)
|
||||||
- [quantileTDigest](/docs/en/sql-reference/aggregate-functions/reference/quantiletdigest.md)
|
- [quantileTDigest](../reference/quantiletdigest.md)
|
||||||
- [quantileTDigestWeighted](/docs/en/sql-reference/aggregate-functions/reference/quantiletdigestweighted.md)
|
- [quantileTDigestWeighted](../reference/quantiletdigestweighted.md)
|
||||||
- [quantileBFloat16](/docs/en/sql-reference/aggregate-functions/reference/quantilebfloat16.md#quantilebfloat16)
|
- [quantileBFloat16](../reference/quantilebfloat16.md#quantilebfloat16)
|
||||||
- [quantileBFloat16Weighted](/docs/en/sql-reference/aggregate-functions/reference/quantilebfloat16.md#quantilebfloat16weighted)
|
- [quantileBFloat16Weighted](../reference/quantilebfloat16.md#quantilebfloat16weighted)
|
||||||
- [quantileDD](/docs/en/sql-reference/aggregate-functions/reference/quantileddsketch.md#quantileddsketch)
|
- [quantileDD](../reference/quantileddsketch.md#quantileddsketch)
|
||||||
- [simpleLinearRegression](/docs/en/sql-reference/aggregate-functions/reference/simplelinearregression.md)
|
- [simpleLinearRegression](../reference/simplelinearregression.md)
|
||||||
- [singleValueOrNull](/docs/en/sql-reference/aggregate-functions/reference/singlevalueornull.md)
|
- [singleValueOrNull](../reference/singlevalueornull.md)
|
||||||
- [stochasticLinearRegression](/docs/en/sql-reference/aggregate-functions/reference/stochasticlinearregression.md)
|
- [stochasticLinearRegression](../reference/stochasticlinearregression.md)
|
||||||
- [stochasticLogisticRegression](/docs/en/sql-reference/aggregate-functions/reference/stochasticlogisticregression.md)
|
- [stochasticLogisticRegression](../reference/stochasticlogisticregression.md)
|
||||||
- [categoricalInformationValue](/docs/en/sql-reference/aggregate-functions/reference/categoricalinformationvalue.md)
|
- [categoricalInformationValue](../reference/categoricalinformationvalue.md)
|
||||||
- [contingency](./contingency.md)
|
- [contingency](../reference/contingency.md)
|
||||||
- [cramersV](./cramersv.md)
|
- [cramersV](../reference/cramersv.md)
|
||||||
- [cramersVBiasCorrected](./cramersvbiascorrected.md)
|
- [cramersVBiasCorrected](../reference/cramersvbiascorrected.md)
|
||||||
- [theilsU](./theilsu.md)
|
- [theilsU](../reference/theilsu.md)
|
||||||
- [maxIntersections](./maxintersections.md)
|
- [maxIntersections](../reference/maxintersections.md)
|
||||||
- [maxIntersectionsPosition](./maxintersectionsposition.md)
|
- [maxIntersectionsPosition](../reference/maxintersectionsposition.md)
|
||||||
- [meanZTest](./meanztest.md)
|
- [meanZTest](../reference/meanztest.md)
|
||||||
- [quantileGK](./quantileGK.md)
|
- [quantileGK](../reference/quantileGK.md)
|
||||||
- [quantileInterpolatedWeighted](./quantileinterpolatedweighted.md)
|
- [quantileInterpolatedWeighted](../reference/quantileinterpolatedweighted.md)
|
||||||
- [sparkBar](./sparkbar.md)
|
- [sparkBar](../reference/sparkbar.md)
|
||||||
- [sumCount](./sumcount.md)
|
- [sumCount](../reference/sumcount.md)
|
||||||
- [largestTriangleThreeBuckets](./largestTriangleThreeBuckets.md)
|
- [largestTriangleThreeBuckets](../reference/largestTriangleThreeBuckets.md)
|
||||||
|
@ -989,6 +989,7 @@ URLHash
|
|||||||
URLHierarchy
|
URLHierarchy
|
||||||
URLPathHierarchy
|
URLPathHierarchy
|
||||||
USearch
|
USearch
|
||||||
|
UTCTimestamp
|
||||||
UUIDNumToString
|
UUIDNumToString
|
||||||
UUIDStringToNum
|
UUIDStringToNum
|
||||||
UUIDToNum
|
UUIDToNum
|
||||||
@ -1366,6 +1367,10 @@ const
|
|||||||
contrib
|
contrib
|
||||||
convertCharset
|
convertCharset
|
||||||
coroutines
|
coroutines
|
||||||
|
corrMatrix
|
||||||
|
corrStable
|
||||||
|
corrmatrix
|
||||||
|
corrstable
|
||||||
cosineDistance
|
cosineDistance
|
||||||
countDigits
|
countDigits
|
||||||
countEqual
|
countEqual
|
||||||
@ -1375,10 +1380,19 @@ countSubstrings
|
|||||||
countSubstringsCaseInsensitive
|
countSubstringsCaseInsensitive
|
||||||
countSubstringsCaseInsensitiveUTF
|
countSubstringsCaseInsensitiveUTF
|
||||||
covarPop
|
covarPop
|
||||||
|
covarPopMatrix
|
||||||
|
covarPopStable
|
||||||
covarSamp
|
covarSamp
|
||||||
|
covarSampMatrix
|
||||||
|
covarSampStable
|
||||||
|
covarStable
|
||||||
covariates
|
covariates
|
||||||
covarpop
|
covarpop
|
||||||
|
covarpopmatrix
|
||||||
|
covarpopstable
|
||||||
covarsamp
|
covarsamp
|
||||||
|
covarsampmatrix
|
||||||
|
covarsampstable
|
||||||
covid
|
covid
|
||||||
cpp
|
cpp
|
||||||
cppkafka
|
cppkafka
|
||||||
@ -1609,6 +1623,7 @@ formated
|
|||||||
formatschema
|
formatschema
|
||||||
formatter
|
formatter
|
||||||
formatters
|
formatters
|
||||||
|
frac
|
||||||
freezed
|
freezed
|
||||||
fromDaysSinceYearZero
|
fromDaysSinceYearZero
|
||||||
fromModifiedJulianDay
|
fromModifiedJulianDay
|
||||||
@ -1735,8 +1750,8 @@ hdfs
|
|||||||
hdfsCluster
|
hdfsCluster
|
||||||
heredoc
|
heredoc
|
||||||
heredocs
|
heredocs
|
||||||
hilbertEncode
|
|
||||||
hilbertDecode
|
hilbertDecode
|
||||||
|
hilbertEncode
|
||||||
hiveHash
|
hiveHash
|
||||||
holistics
|
holistics
|
||||||
homebrew
|
homebrew
|
||||||
@ -2666,16 +2681,16 @@ toStartOfFiveMinutes
|
|||||||
toStartOfHour
|
toStartOfHour
|
||||||
toStartOfISOYear
|
toStartOfISOYear
|
||||||
toStartOfInterval
|
toStartOfInterval
|
||||||
|
toStartOfMicrosecond
|
||||||
|
toStartOfMillisecond
|
||||||
toStartOfMinute
|
toStartOfMinute
|
||||||
toStartOfMonth
|
toStartOfMonth
|
||||||
|
toStartOfNanosecond
|
||||||
toStartOfQuarter
|
toStartOfQuarter
|
||||||
toStartOfSecond
|
toStartOfSecond
|
||||||
toStartOfTenMinutes
|
toStartOfTenMinutes
|
||||||
toStartOfWeek
|
toStartOfWeek
|
||||||
toStartOfYear
|
toStartOfYear
|
||||||
toStartOfMicrosecond
|
|
||||||
toStartOfMillisecond
|
|
||||||
toStartOfNanosecond
|
|
||||||
toString
|
toString
|
||||||
toStringCutToZero
|
toStringCutToZero
|
||||||
toTime
|
toTime
|
||||||
@ -2805,7 +2820,6 @@ urls
|
|||||||
usearch
|
usearch
|
||||||
userspace
|
userspace
|
||||||
userver
|
userver
|
||||||
UTCTimestamp
|
|
||||||
utils
|
utils
|
||||||
uuid
|
uuid
|
||||||
uuidv
|
uuidv
|
||||||
|
Loading…
Reference in New Issue
Block a user