Answered step by step
Verified Expert Solution
Question
1 Approved Answer
In [174]: from statsmodels. tsa. arima_model import ARIMA for param in pdq: ARIMA_model = ARIMA(train[ ' Rose' ]. values, order=param) . fit() print ( 'ARIMA{}
In [174]: from statsmodels. tsa. arima_model import ARIMA for param in pdq: ARIMA_model = ARIMA(train[ ' Rose' ]. values, order=param) . fit() print ( 'ARIMA{} - AIC: {}'. format (param, ARIMA_model. aic) ) ARIMA_AIC = ARIMA_AIC. append ({'param' : param, 'AIC': ARIMA_model.aic}, ignore_index=True) NotImplementedError Traceback (most recent call last) ~\\AppData\\Local\\Temp/ipykernel_27308/614484191. py in 1 from statsmodels. tsa . arima_model import ARIMA 2 for param in pdq: - - --> ARIMA_model = ARIMA(train[ 'Rose' ] . values, order=param) . fit() print ( 'ARIMA{} - AIC: {}' . format (param, ARIMA_model. aic) ) ARIMA_AIC = ARIMA_AIC. append ({'param' :param, 'AIC': ARIMA_model. aic}, ignore_index=True) ~\\anaconda3\\lib\\site-packages\\statsmodels\\tsa\\arima_model. py in _init_(self, *args, **kwargs) 43 44 def _init_(self, *args, **kwargs) : - - -> 45 super () ._init_(*args, **kwargs) 46 47 ~\\anaconda3\\lib\\site-packages\\statsmodels\\tsa\\arima_model. py in _init_(self, *args, **kwargs) 27 28 def _init_(self, *args, **kwargs): - --> 29 raise Not ImplementedError (ARIMA_DEPRECATION_ERROR) 30 31 Not ImplementedError : statsmodels. tsa. arima_model. ARMA and statsmodels. tsa. arima_model. ARIMA have been removed in favor of statsmodels. tsa. arima. model. ARIMA (note the . between arima and model) and statsmodels. tsa. SARIMAX. statsmodels. tsa. arima. model. ARIMA makes use of the statespace framework and is both well tested and maintained. It also offers alternative specialized parameter estimators
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started