我正在研究时间序列模型。我必须在 pyramid-arima 模块中使用 auto_arima 模型。我在我的数据集上安装了一个 auto_arima 模型。现在我有两个问题。
我想看看模型参数。
我想从模型中获得拟合值。
下面是我的示例代码。
m1_hist = auto_arima(ts1_hist, start_p=1, start_q=1,
max_p=3, max_q=3, m=12,
start_P=0, seasonal=True,
d=1, D=1, trace=True,
error_action='ignore',
suppress_warnings=True,
stepwise=True)
m1_hist2 = m1_hist.fit(ts1_hist)
我用来m1_hist.params
获取模型参数。但它没有向我显示输出。
你能解决我的问题吗?
提前致谢。