I have a time series with seasonal components. I fitted the statsmodels ARIMA with
model = tsa.arima_model.ARIMA(data, (8,1,0)).fit()
For example. Now, I understand that ARIMA differences my data. How can I compare the results from
prediction = model.predict()
fig, ax = plt.subplots()
data.plot()
prediction.plot()
as data will be the original data and prediction is differenced, and so has a mean around 0, different from the mean of data?
typ
keyword. – Britten