Mô hình ARIMA với Python
James Fulton
Climate informatics researcher
Từ dữ liệu thô $\rightarrow$ mô hình triển khai

df.plot()adfuller()df.diff(), np.log(), np.sqrt()plot_acf(), plot_pacf()
model.fit() thực hiện cho taresults.aic, results.bic
results.plot_diagnostics()results.summary()


results.get_forecast()

Mô hình ARIMA với Python