Why we are getting this error when we predict or forecast using Statsmodels " SARIMAX "?. I am just passing the start and end of Index and steps that need to take into consideration.
Either use the below line to execute:
results = model.fit()
predictions= results.predict(start =train_size, end=train_size+test_size+(steps)-1)
(Or)
forecast_= results.forecast(steps=test_size-1)
Is there any proper way to neglect the warning message?
**
Want to understand in detail the warning. Hope will get it.
**.