Georgios Boumis
2018-11-16 10:42:53 UTC
How can I get the residuals out of this model?
mod=sarimax.SARIMAX(noxtrain,order=(1,0,0),seasonal_order=(1,1,0,24),enforce_stationarity=False,enforce_invertibility=False)
results=mod.fit()
It should be results.resid() right? But I get np.ndarray not callable...
mod=sarimax.SARIMAX(noxtrain,order=(1,0,0),seasonal_order=(1,1,0,24),enforce_stationarity=False,enforce_invertibility=False)
results=mod.fit()
It should be results.resid() right? But I get np.ndarray not callable...