Hi,
I did example 15.5 "Return to education for working women" in Wooldridge's textbook "Introductory econometrics a modern approach" 5th edition.
First i ran
and got the same answer as the book.
Then i wanted to use two stage lease squares procedure:
stage 1:
stage 2:
but the estimated coefficients are not the same, as shown in the table

Why is the estimated coefficient for education using Stata command is 0.061, the same as textbook, but 0.057 while using 2 stages? Thank you!
I did example 15.5 "Return to education for working women" in Wooldridge's textbook "Introductory econometrics a modern approach" 5th edition.
First i ran
Code:
ivregress 2sls lwage exper expersq (educ= fatheduc motheduc)
Then i wanted to use two stage lease squares procedure:
stage 1:
Code:
regress educ fatheduc motheduc exper expersq predict educ_hat, xb
Code:
regress lwage educ_hat exper expersq
Why is the estimated coefficient for education using Stata command is 0.061, the same as textbook, but 0.057 while using 2 stages? Thank you!
Comment