Is there any special information criterion defined for State-space model? %AIC %SBC are not working.
Something similar to "A Bootstrap Variant of AIC for StateSpace Model Selection" (Joseph E Cavanaugh and Robert H Shumway)
AIC in SS
Re: AIC in SS
No. The same formulas apply. %AIC and %SBC aren't defined by the instruction, but you can compute them using %LOGL, %NREG and %NOBS:ivory4 wrote:Is there any special information criterion defined for State-space model? %AIC %SBC are not working.
Something similar to "A Bootstrap Variant of AIC for StateSpace Model Selection" (Joseph E Cavanaugh and Robert H Shumway)
Code: Select all
compute %aic=-2.0*%logl+2*%nreg
compute %sbc=-2.0*%logl+log(%nobs)*%nreg