ClickHouse/docs/ru/sql-reference/aggregate-functions/reference/simplelinearregression.md
Simon Podlipsky 677f296214
docs: use k as constant name instead of a in simpleLinearRegression
Function uses `k` internally.

E.g.

```sql
SELECT arrayReduce('simpleLinearRegression', [0, 1, 2, 3], [0, 1, 2, 3]) FORMAT JsonEachRow
```

outputs `{"arrayReduce('simpleLinearRegression', [0, 1, 2, 3], [0, 1, 2, 3])":{"k":1,"b":0}}`
2024-10-21 15:34:15 +02:00

1.5 KiB
Raw Blame History

slug sidebar_position
/ru/sql-reference/aggregate-functions/reference/simplelinearregression 220

simpleLinearRegression

Выполняет простую (одномерную) линейную регрессию.

simpleLinearRegression(x, y)

Параметры:

  • x — столбец со значениями зависимой переменной.
  • y — столбец со значениями наблюдаемой переменной.

Возвращаемые значения:

Константы (k, b) результирующей прямой y = k*x + b.

Примеры

SELECT arrayReduce('simpleLinearRegression', [0, 1, 2, 3], [0, 1, 2, 3])
┌─arrayReduce('simpleLinearRegression', [0, 1, 2, 3], [0, 1, 2, 3])─┐
│ (1,0)                                                             │
└───────────────────────────────────────────────────────────────────┘
SELECT arrayReduce('simpleLinearRegression', [0, 1, 2, 3], [3, 4, 5, 6])
┌─arrayReduce('simpleLinearRegression', [0, 1, 2, 3], [3, 4, 5, 6])─┐
│ (1,3)                                                             │
└───────────────────────────────────────────────────────────────────┘