Last answered:

28 Nov 2022

Posted on:

20 Oct 2021

3

Deprecated Library: statsmodels.tsa.arima_model

statsmodels.tsa.arima_model is deprecated, is using statsmols.tsa.ar_model.AutoReg instead the way to go?
I'm enjoying the series a lot, thanks for the great content!

3 answers ( 0 marked as helpful)
Posted on:

04 Jan 2022

10

# Import
from statsmodels.tsa.arima.model import ARIMA

# Code
model_ar = ARIMA(df.market_value, order=(1,0,0))
results_ar = model_ar.fit()
results_ar.summary()

Posted on:

17 Jul 2022

1

Follow-up question: What is the order parameters mean? I have read the documentation of the ARIMA model, but I am not sure what (p,d,q) means. https://www.statsmodels.org/devel/generated/statsmodels.tsa.arima.model.ARIMA.html

Posted on:

28 Nov 2022

0

What is the counterpart of the llf attribute of  ARMA model from arima_model, in ARIMA model from arima.model?

Submit an answer