MLBazaar / MLPrimitives

Primitives for machine learning and data science.
https://mlbazaar.github.io/MLPrimitives
MIT License
70 stars 38 forks source link

Adapt to `statsmodels.tsa.arima_model.ARIMA` deprecation. #253

Closed csala closed 6 months ago

csala commented 3 years ago

statsmodels release v0.12.0 deprecated the statsmodels.tsa.arima_model.ARIMA model in favor of statsmodels.tsa.arima.model.ARIMA:

https://github.com/statsmodels/statsmodels/blob/04f00006a7aeb1c93d6894caa420698400da6c33/statsmodels/tsa/arima_model.py#L35

We should adapt to this change before they release v0.13.0, which will fully remove the arima_model module:

https://github.com/MLBazaar/MLPrimitives/blob/97ab03f1aa8164fb2ba58754489bfc840f47d9f9/mlprimitives/adapters/statsmodels.py#L2

sarahmish commented 6 months ago

Solved in #279