statsmodels.stats.diagnostic.het_arch¶
- statsmodels.stats.diagnostic.het_arch(resid, nlags=None, store=False, ddof=0)[source]¶
Engle’s Test for Autoregressive Conditional Heteroscedasticity (ARCH).
- Parameters:¶
- resid
ndarray residuals from an estimation, or time series
- nlags
int,defaultNone Highest lag to use.
- storebool,
defaultFalse If true then the intermediate results are also returned
- ddof
int,default0 If the residuals are from a regression, or ARMA estimation, then there are recommendations to correct the degrees of freedom by the number of parameters that have been estimated, for example ddof=p+q for an ARMA(p,q).
- resid
- Returns:¶
- lm
float Lagrange multiplier test statistic
- lmpval
float p-value for Lagrange multiplier test
- fval
float fstatistic for F test, alternative version of the same test based on F test for the parameter restriction
- fpval
float pvalue for F test
- res_store
ResultsStore,optional Intermediate results. Returned if store is True.
- lm
Notes
verified against R:FinTS::ArchTest
Last update:
Jun 10, 2024