I'm using the Augmented Dickey-Fuller function (
statsmodels.tsa.stattools.adfuller). I'm trying to get it to return the Regression results.
The arguments passed into the function are: adf = ts.adfuller(x, autolag='AIC', regression='c', store=True, regresults=True).
Instead of getting the results returned, I get <statsmodels.tsa.stattools.ResultsStore object at 0x7ff6fab1b350>. When I try to parse this using str(), I get this error AttributeError: 'ResultsStore' object has no attribute '_str'.
How do I access the Regression results?