Python 中的 ARIMA 模型
James Fulton
Climate informatics researcher
从原始数据$\rightarrow$生产模型

df.plot()adfuller()df.diff(), np.log(), np.sqrt()plot_acf(), plot_pacf()
model.fit()为我们完成results.aic, results.bic
results.plot_diagnostics()results.summary()


results.get_forecast()

Python 中的 ARIMA 模型