Why is it giving me a straight line whereas we can see that there is a pattern? Please tell me what I am doing wrong. I have build this model in python using statsmodel library.
I want the forecast for the year 2017. But it is coming a straight line. I want to know why there are no fluctuations? The data given was weekly data and I applied ARIMA model with order (1,1,1). With d=1, the series was becoming stationary.
Contents
hide
Best Answer
You have considered orders(1,1,1) which explains stationary data. You also need to consider seasonal factor to get desired output.
order = c(1,1,1), seasonal = c(1,1,1)
Similar Posts:
- Solved – What argument to pass in the SARIMAX model
- Solved – Does stationarity under ADF test imply mean, variance and covariance stationary
- Solved – Interpretation of Canova and Hansen test for seasonal unit-root with R uroot package
- Solved – Interpretation of Canova and Hansen test for seasonal unit-root with R uroot package
- Solved – Interpretation of Canova and Hansen test for seasonal unit-root with R uroot package