0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

kaggle初心者に送るAdvent Calendar 2024

Day 8

Linear Regression With Time Series tutorial 解説 part1

Posted at

の解説を行います。

Linear Regression:回帰分析
Time Series:時系列データ
です。

__results___5_0.png

のような時系列データを

target = weight_1 * feature_1 + weight_2 * feature_2 + bias

のように予測すると言うものです。結果としてはn次関数を作ります。上の図では一次関数ですが、よりよくするために2次関数、3次関数・・・とすることもできます。

bias は、
2x+3でいうところの+3の部分です。

ここでxの係数がよりよく、目的とする変数を予測できるようにしなくてはなりません。ここで、予測値と実際の値の誤差を取り、そのごさが最も小さい数字をxの係数にするということを考えるわけです。それが回帰分析です。

nつ前のデータをとってくる

dataframe.shift(n)

これにより、dataframeの列を増やす(特徴量を増やす)こともできます。そこから差分を取り・・としていくとさらに特徴量が増えます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?