Hi all,
I have what I think is a very simple question but I have not seen a generalizable answer to this on StataList.
if you want to run a 2sls, you can do so very easily with Procedure 1:
But if I want to do so in two steps as below in Procedure 2, the standard errors will obviously be wrong.
Is there a quick (or less quick) way to force the standard errors in Procedure 2 to the correct values taken from Procedure 1? Similarly, what if the regression I wanted to complete manually was
Would that have a simple fix as well? Hope I'm not violating any StataList Guidelines here!
Thanks so much in advance!
Best,
Chuck
I have what I think is a very simple question but I have not seen a generalizable answer to this on StataList.
if you want to run a 2sls, you can do so very easily with Procedure 1:
Code:
ivreg y1 x1 (x2 = z1 z2)
Code:
reg x2 x1 z1 z2 predict x2hat, xb reg y1 x1 x2hat
Code:
ivreg y1 x1 (x2 = z1 z2), r
Would that have a simple fix as well? Hope I'm not violating any StataList Guidelines here!
Thanks so much in advance!
Best,
Chuck
Comment