メインコンテンツへスキップ
メインコンテンツへスキップ

simpleLinearRegression

単回帰(1次元の線形回帰)を実行します。

simpleLinearRegression(x, y)

パラメータ:

  • x — 説明変数の値を含む列。
  • y — 従属変数の値を含む列。

戻り値:

得られた直線 y = k*x + b の定数 (k, 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)                                                             │
└───────────────────────────────────────────────────────────────────┘