Dear Statalists,
I have a binary dependent variable, an endogenous (continuous) independent variable and an exogenous instrument and I am using ivprobit to estimate the causal effect of the independent variable on the dependent variable.
What I am doing is similar to the example given in the ivprobit helpfile (which I would like to discuss here as it is clearer and more straightforward than my own data).
In this example, male education is used as an instrument for income. Female education and number of children are other controls. Here is the output from the twostep procedure (last line of code). 
As you can see from the output, male education is used as an instrument in the first stage regression. However, female education and the number of children are also used. My questions is: Can I specify in the ivprobit command that I would like to use only male education as an instrument, and include the controls only in the second stage? If not, do you any other command that might be able to implement this?
Thank you very much in advance for your help.
Best,
Milan
p.s.
I realized that this question has been asked before. See here: http://www.stata.com/statalist/archi.../msg01153.html
However, I feel that my issue remains unsolved. Maybe it is not possible with ivprobit at all. Does there exist a user-written command to implement this? Thanks.
I have a binary dependent variable, an endogenous (continuous) independent variable and an exogenous instrument and I am using ivprobit to estimate the causal effect of the independent variable on the dependent variable.
What I am doing is similar to the example given in the ivprobit helpfile (which I would like to discuss here as it is clearer and more straightforward than my own data).
Code:
clear webuse laborsup ivprobit fem_work fem_educ kids (other_inc = male_educ), first ivprobit fem_work fem_educ kids (other_inc = male_educ), first twostep
As you can see from the output, male education is used as an instrument in the first stage regression. However, female education and the number of children are also used. My questions is: Can I specify in the ivprobit command that I would like to use only male education as an instrument, and include the controls only in the second stage? If not, do you any other command that might be able to implement this?
Thank you very much in advance for your help.
Best,
Milan
p.s.
I realized that this question has been asked before. See here: http://www.stata.com/statalist/archi.../msg01153.html
However, I feel that my issue remains unsolved. Maybe it is not possible with ivprobit at all. Does there exist a user-written command to implement this? Thanks.
Comment