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

43 lines
1.2 KiB
Markdown
Raw Normal View History

---
sidebar_position: 220
---
2022-06-02 10:55:18 +00:00
# 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) │
└───────────────────────────────────────────────────────────────────┘
```