1

Is ARIMA(0,1,0)x(0,0,0) a valid grid search combination using Sarimax in Python? I've built a few ARIMA models in python and have noticed that this combination is not found in the grid search so it leaves me wondering if this a valid combination. Obviously, I'm not an expert but was looking for some additional information.

Stephan Kolassa
  • 123,354

1 Answers1

0

Indeed it is, in particular if you force a non-seasonal model. Python: auto_arima predicts constant value gives an example where auto_arima() chooses an ARIMA(0,1,0) random walk.

Stephan Kolassa
  • 123,354