statsmodels.tsa.statespace.mlemodel.MLEResults.test_serial_correlation¶
-
MLEResults.
test_serial_correlation
(method, lags=None)[source]¶ Ljung-Box test for no serial correlation of standardized residuals
Null hypothesis is no serial correlation.
- Parameters
- method{‘ljungbox’,’boxpierece’,
None
} The statistical test for serial correlation. If None, an attempt is made to select an appropriate test.
- lags
None
,int
or array_like If lags is an integer then this is taken to be the largest lag that is included, the test result is reported for all smaller lag length. If lags is a list or array, then all lags are included up to the largest lag in the list, however only the tests for the lags in the list are reported. If lags is None, then the default maxlag is 12*(nobs/100)^{1/4}
- method{‘ljungbox’,’boxpierece’,
- Returns
- output
array
An array with (test_statistic, pvalue) for each endogenous variable and each lag. The array is then sized (k_endog, 2, lags). If the method is called as ljungbox = res.test_serial_correlation(), then ljungbox[i] holds the results of the Ljung-Box test (as would be returned by statsmodels.stats.diagnostic.acorr_ljungbox) for the i th endogenous variable.
- output
Notes
Let d = max(loglikelihood_burn, nobs_diffuse); this test is calculated ignoring the first d residuals.
Output is nan for any endogenous variable which has missing values.