Python 時系列分析 1,000本ノック
– ノック37: ARモデルの適用 –

Python 時系列分析 1,000本ノック– ノック37: ARモデルの適用 –
次の Python コードの出力はどれでしょうか?

Python コード:

from statsmodels.tsa.ar_model import AutoReg
import numpy as np

np.random.seed(15)
data = np.random.randn(50)

model = AutoReg(data, lags=1).fit()

print(model.params)

 

回答の選択肢:

(A) ARモデルのAIC
(B) ARモデルの係数
(C) ARモデルの残差
(D) ARモデルの予測値

Python 時系列分析 1,000本ノック– ノック38: 季節性トレンド分解 –