W3cubDocs

/Statsmodels

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 (string {'ljungbox','boxpierece'} or 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}
Returns:

output – 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.

Return type:

array

Notes

If the first d loglikelihood values were burned (i.e. in the specified model, loglikelihood_burn=d), then this test is calculated ignoring the first d residuals.

Output is nan for any endogenous variable which has missing values.

© 2009–2012 Statsmodels Developers
© 2006–2008 Scipy Developers
© 2006 Jonathan E. Taylor
Licensed under the 3-clause BSD License.
http://www.statsmodels.org/stable/generated/statsmodels.tsa.statespace.mlemodel.MLEResults.test_serial_correlation.html