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 模型