用参数重建​​ARIMA模型

时间:2019-10-21 11:40:31

标签: python-3.x arima pyramid-arima

我使用pmdarima软件包中auto_arima的to_dict函数使用ARIMA模型的以下参数。我可以使用该字典对象重建可用于预测结果的模型吗?

我的字典如下:

 {'pvalues': array([1.4, 1.7, 9.4, 9.3]),
     'resid': array([1.1, 1.0, 1.9, 2.8, ....]),
     'order': (0, 0, 1),
     'seasonal_order': (0, 1, 1, 7),
     'oob': nan,
     'aic': 520.0923760929898,
     'aicc': 521.2034872041008,
     'bic': 527.9735437471983,
     'bse': array([2.5, 9.0, 1.3, 9.1]),
     'params': array([ 9.6,  5.4, -9.9,  6.9])}

0 个答案:

没有答案