I'm trying to follow a tutorial on time series analysis and have hit a hurdle early on. The "SARIMAX" library is unavailable using the following syntax, as per the statsmodels website:
import statsmodels.api as sm
sm.tsa.statespace.SARIMAX
I've also looked in e.g.:
sm.tsa.SARIMAX
Statespace is missing and so is SARIMAX in the other option. What am I doing wrong?
Using tab completion, I can't see any similar looking libraries (as a newbie to this field).
I'm using latest stable version: 0.6.1
Thank you in advance!