Auto Arima is not working #217
-
So, I am really new to this forecasting library, and i am facing some issue to run the auto_arima function of it. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @Abhaysharma53! The problem probably arises from the update of the models that we made from version 1.0.0. Before that version, the models followed a functional paradigm. The most recent version uses classes with
You can find an example of the new syntaxis here: https://nixtla.github.io/statsforecast/examples/Getting_Started_with_Auto_Arima_and_ETS.html. |
Beta Was this translation helpful? Give feedback.
Hi @Abhaysharma53!
The problem probably arises from the update of the models that we made from version 1.0.0. Before that version, the models followed a functional paradigm. The most recent version uses classes with
fit
andpredict
methods (like sklearn). So, to import auto arima the new line would be:You can find an example of the new syntaxis here: https://nixtla.github.io/statsforecast/examples/Getting_Started_with_Auto_Arima_and_ETS.html.