I am estimating a recursive triangular system with CMP with four equations, reflecting two Tobit Type-II models. In my current specification, the model estimates all possible error term correlations.
1. How can I restrict the error term correlations, such that it only estimates the error term correlation within each Tobit II model (i.e. between the selection equation and the conditional outcome equation; so 2 correlations in total) but not the correlations between Tobit II models.
2. How can I correlate the individual-level intercepts (indicated by || user_id
across the four equations?
Thanks in advance.
Code:
cmp (Y3 = X3 || user_id:) (Y1 = X1 || user_id:) (Y4 = X4 Y3 || user_id:) (Y2 = X2 Y3 || user_id:), indicators(Y2 $cmp_probit Y4 $cmp_probit) quietly
2. How can I correlate the individual-level intercepts (indicated by || user_id

Thanks in advance.
Comment