Skip to content

Commit

Permalink
add warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahmish committed Sep 30, 2023
1 parent fd71382 commit 6796029
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion mlstars/adapters/statsmodels.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
from statsmodels.tsa.arima import model

_ARIMA_MODEL_DEPRECATION_WARNING = (
"mstatsmodels.tsa.arima_model.Arima is deprecated "
"statsmodels.tsa.arima_model.Arima is deprecated "
"and will be removed in a future version. Please use "
"statsmodels.tsa.arima.model.ARIMA instead."
)


class ARIMA(object):
"""A Wrapper for the statsmodels.tsa.arima.model.ARIMA class."""

Expand Down
2 changes: 1 addition & 1 deletion mlstars/primitives/statsmodels.tsa.arima_model.Arima.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"contributors": [
"Alexander Geiger <[email protected]>"
],
"description": "ARIMA Model",
"description": "ARIMA Model; mstatsmodels.tsa.arima_model.Arima is deprecated and will be removed in a future version. Please use statsmodels.tsa.arima.model.ARIMA instead.",
"classifiers": {
"type": "estimator",
"subtype": "regressor"
Expand Down

0 comments on commit 6796029

Please sign in to comment.