Hello,
I want to apply instrument variable in my probit model. Initially, I used 'ivprobit' command to estimate my results. Then as a diagnostic test, I used 'cmp' command and re-ran the model. I expected the results yielded by these two techniques would be similar. However, the final results differed significantly. I have attached my commands as well as results below for your review. I will be much appreciated if someone can help me!
In my model, 'obesity' is a binary variable. 'lnwage' is assumed as an endogenous variable while 'emp01esop15' is the instrument variable.
I noticed that the total observations after the execution of these two techniques are different. Is this the reason that why the results are different?
I am sorry for the double post. Since this post presents readable codes and more details concerning my question, please ignore my first post.
The IV-Probit command is:
The results after IV-Probit command is: 
The CMP command is:
The CMP result is: 

I want to apply instrument variable in my probit model. Initially, I used 'ivprobit' command to estimate my results. Then as a diagnostic test, I used 'cmp' command and re-ran the model. I expected the results yielded by these two techniques would be similar. However, the final results differed significantly. I have attached my commands as well as results below for your review. I will be much appreciated if someone can help me!
In my model, 'obesity' is a binary variable. 'lnwage' is assumed as an endogenous variable while 'emp01esop15' is the instrument variable.
I noticed that the total observations after the execution of these two techniques are different. Is this the reason that why the results are different?
I am sorry for the double post. Since this post presents readable codes and more details concerning my question, please ignore my first post.
The IV-Probit command is:
Code:
ivprobit obesity (lnwage=emp01esop15) povertyratio workinghrs hhsize15 newindustry degree maritual sex15 region2015 age2015 age2 workinghr2 emotion ethnicity97 emp01medinsur15
The CMP command is:
Code:
cmp (obesity = lnwage povertyratio workinghrs hhsize15 newindustry degree maritual sex15 region2015 age2015 age2 workinghr2 emotion ethnicity97 emp01medinsur15) (lnwage = povertyratio emp01esop15 workinghrs hhsize15 newindustry degree maritual sex15 region2015 age2015 age2 workinghr2 emotion ethnicity97 emp01medinsur15), ind($cmp_probit $cmp_cont) qui
Comment