mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
7170f3c534
* prefer relative links from root * wip * split aggregate function reference * split system tables
43 lines
1.3 KiB
Markdown
43 lines
1.3 KiB
Markdown
---
|
|
toc_priority: 220
|
|
---
|
|
|
|
# simpleLinearRegression {#simplelinearregression}
|
|
|
|
Performs simple (unidimensional) linear regression.
|
|
|
|
``` sql
|
|
simpleLinearRegression(x, y)
|
|
```
|
|
|
|
Parameters:
|
|
|
|
- `x` — Column with dependent variable values.
|
|
- `y` — Column with explanatory variable values.
|
|
|
|
Returned values:
|
|
|
|
Constants `(a, b)` of the resulting line `y = a*x + b`.
|
|
|
|
**Examples**
|
|
|
|
``` sql
|
|
SELECT arrayReduce('simpleLinearRegression', [0, 1, 2, 3], [0, 1, 2, 3])
|
|
```
|
|
|
|
``` text
|
|
┌─arrayReduce('simpleLinearRegression', [0, 1, 2, 3], [0, 1, 2, 3])─┐
|
|
│ (1,0) │
|
|
└───────────────────────────────────────────────────────────────────┘
|
|
```
|
|
|
|
``` sql
|
|
SELECT arrayReduce('simpleLinearRegression', [0, 1, 2, 3], [3, 4, 5, 6])
|
|
```
|
|
|
|
``` text
|
|
┌─arrayReduce('simpleLinearRegression', [0, 1, 2, 3], [3, 4, 5, 6])─┐
|
|
│ (1,3) │
|
|
└───────────────────────────────────────────────────────────────────┘
|
|
```
|