statsmodels.tsa.statespace.dynamic_factor.DynamicFactorResults.test_serial_correlation

method

DynamicFactorResults.test_serial_correlation(method, lags=None)

Ljung-box test for no serial correlation of standardized residuals

Null hypothesis is no serial correlation.

Parameters
methodstring {‘ljungbox’,’boxpierece’} or None

The statistical test for serial correlation. If None, an attempt is made to select an appropriate test.

lagsNone, 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}

Returns
outputarray

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.

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.