statsmodels.tsa.stattools.ADFullerResult#
- class statsmodels.tsa.stattools.ADFullerResult(statistic, pvalue, lags, nobs, critical_values, icbest, resstore)[source]#
Result of
adfuller.- Parameters:
- statistic
float The test statistic.
- pvalue
float MacKinnon’s approximate p-value based on MacKinnon (1994, 2010).
- lags
int The number of lags used.
- nobs
int The number of observations used for the ADF regression and calculation of the critical values.
- critical_values
dict[str,float] Critical values for the test statistic at the 1 %, 5 %, and 10 % levels. Based on MacKinnon (2010).
- icbest
floatorNone The maximized information criterion if autolag is not None, otherwise None.
- resstore
ResultsStoreorNone A dummy class with results attached as attributes, if
storewas True, otherwise None.
- statistic
- Attributes:
- critical_values
- icbest
- lags
- nobs
- pvalue
- resstore
- statistic
Notes
Unpacks as
statistic, pvalue = result. Other values are only accessible using attributes.Methods
Properties