I have to estimate a SURE model with cross equation constraints which looks as follows:
X= a + b* L.X + c*L.Y
Y = g + (0.2*b)L.X + (2+ 0.2c)*L.Y
constraint define 1[Y]L.X= [X]0.2*L.X
constraint define 2[Y]L.Y= [X]2 + 0.2*L.Y
sureg (X: X = L.X L.Y) (Y: Y = L.X L.Y), constraints(1 2 )
The above code gives r(111) error in constraints .
Could you please tell me what is going wrong here.
Thank you,
X= a + b* L.X + c*L.Y
Y = g + (0.2*b)L.X + (2+ 0.2c)*L.Y
constraint define 1[Y]L.X= [X]0.2*L.X
constraint define 2[Y]L.Y= [X]2 + 0.2*L.Y
sureg (X: X = L.X L.Y) (Y: Y = L.X L.Y), constraints(1 2 )
The above code gives r(111) error in constraints .
Could you please tell me what is going wrong here.
Thank you,
Comment