I am using Stata 14 and xtivreg2 version 01.0.17.
Why are the first stage f-stats different even for the case of one endogenous regressor and one instrument (exactly identified)? Is the Sanderson-Windmeijer estimator, used by xtivreg2, too conservative? Am I missing something?
For my project, if I use the value calculated by the official "xtivreg" or hand-written "xtreg", I can reject that the instrument is weak using the critical values in Stock and Yogo (2005).
For the code that follows, here are the F-stats ... I use a publicly available dataset here but I get the same rank order for f-stats for the project I am using (i.e. xtivreg2 gives the smalles f-stat).
Case I: F-stat is 3.39
Case II : F-stat is 2.91
Case III: F-stat is 0.11
Why are the first stage f-stats different even for the case of one endogenous regressor and one instrument (exactly identified)? Is the Sanderson-Windmeijer estimator, used by xtivreg2, too conservative? Am I missing something?
For my project, if I use the value calculated by the official "xtivreg" or hand-written "xtreg", I can reject that the instrument is weak using the critical values in Stock and Yogo (2005).
For the code that follows, here are the F-stats ... I use a publicly available dataset here but I get the same rank order for f-stats for the project I am using (i.e. xtivreg2 gives the smalles f-stat).
Case I: F-stat is 3.39
Case II : F-stat is 2.91
Case III: F-stat is 0.11
Code:
use http://cameron.econ.ucdavis.edu/musbook/mus08psidextract.dta xtset id t cls display "CASE I: hand-written first stage" xtreg wks ms exp exp2 , fe vce(robust) display "CASE II" xtivreg lwage exp exp2 (wks = ms), fe first vce(robust) display "Case III" xtivreg2 lwage exp exp2 (wks = ms), fe first cluster(id)
Comment