statsmodels.tsa.statespace.mlemodel.MLEResults.info_criteria¶
-
MLEResults.
info_criteria
(criteria, method='standard')[source]¶ Information criteria
- Parameters
- criteria{‘aic’, ‘bic’, ‘hqic’}
The information criteria to compute.
- method{‘standard’, ‘lutkepohl’}
The method for information criteria computation. Default is ‘standard’ method; ‘lutkepohl’ computes the information criteria as in Lütkepohl (2007). See Notes for formulas.
Notes
The ‘standard’ formulas are:
AIC=−2logL(Yn|ˆψ)+2kBIC=−2logL(Yn|ˆψ)+klognHQIC=−2logL(Yn|ˆψ)+2kloglognwhere ˆψ are the maximum likelihood estimates of the parameters, n is the number of observations, and k is the number of estimated parameters.
Note that the ‘standard’ formulas are returned from the aic, bic, and hqic results attributes.
The ‘lutkepohl’ formulas are (Lütkepohl, 2010):
AICL=log|Q|+2knBICL=log|Q|+klognnHQICL=log|Q|+2kloglognnwhere Q is the state covariance matrix. Note that the Lütkepohl definitions do not apply to all state space models, and should be used with care outside of SARIMAX and VARMAX models.
References
- *
Lütkepohl, Helmut. 2007. New Introduction to Multiple Time Series Analysis. Berlin: Springer.