Hi,
I use Mroz data set to run example 16.5 in Introductory Econometrics fifth edition (Wooldridge).
By 2SLS:
I got the same estimated coefficients as the textbook.
By 3SLS:
The results are slightly different, i think it is because the correlation between two error terms of the structural equations is taken into account. Is it correct?
But when i try SEM:
it doesn't converge, why? How to use SEM to do the regression?
I use Mroz data set to run example 16.5 in Introductory Econometrics fifth edition (Wooldridge).
By 2SLS:
Code:
ivregress 2sls hours (lwage=exper expersq) educ age kidslt6 nwifeinc
By 3SLS:
Code:
reg3 (hours lwage age educ nwifeinc kidslt6 ) (lwage hours educ exper expersq)
But when i try SEM:
Code:
sem (hours<-lwage age educ nwifeinc kidslt6 ) (lwage<-hours educ exper expersq), cov(e.hours*e.lwage)
Comment