Page 1 of 1

P Matrix in MSVarSetup

Posted: Wed Feb 22, 2017 6:06 am
by alexecon
Matrix P in MSVarSetup is a nstates-1 x nstates transition matrix. With three regimes, e.g., the procedure provides estimates and standard errors for the following:

Code: Select all

P=
(1,1) (1,2) (1,3)
(2,1) (2,2) (2,3)
Am I right that to get the nstates x nstates matrix, one needs to construct the last row as follows?

Code: Select all

(1-(1,1)-(2,1)) (1-(1,2)-(2,2)) (1-(1,3)-(2,3))


What about the standard errors, how can these be computed?

Re: P Matrix in MSVarSetup

Posted: Wed Feb 22, 2017 10:01 am
by TomDoan
That's correct. You can use SUMMARIZE if you want to compute standard errors. See, for instance, the MHHP737.RPF example (Martin, Hurn and Harris textbook examples), which does a function of the transition probabilities in a 2 regime case.