AIC for ARIMA model #922
Answered
by
jmoralez
theforecastnoob
asked this question in
Q&A
-
Do you plan to make it possible to obtain e.g. AIC from an ARIMA? I know AutoArima provides this, but cannot find information about this regarding the standard ARIMA. |
Beta Was this translation helpful? Give feedback.
Answered by
jmoralez
Sep 25, 2024
Replies: 1 comment
-
The criterions are also included in the arima model, e.g. from statsforecast.models import ARIMA
from statsforecast.utils import AirPassengers
model = ARIMA(season_length=12).fit(AirPassengers)
model.model_['aic'], model.model_['bic'] |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
theforecastnoob
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The criterions are also included in the arima model, e.g.