Hello everyone
i used following command for probit regression and then estimated marginal effects
then i used ivprobit where the instrumental variable is also a dummy, i added nose with marginal effect command becz it was taking long to time to give output
i found that there is big difference in estimated coefficients of both probit and (IV) probit regression but marginal effects are exactly same ? is it possible or im making some mistake? can someone please guide me
i used following command for probit regression and then estimated marginal effects
Code:
probit y x rd competition training lnage lnmanagerexp i.sml c1 c2 c3 i.isic i.ccode, vce(cluster ccode)
Code:
margins, dydx(x rd competition training lnage lnmanagerexp i.sml c1 c2 c3) post
Code:
ivprobit y (x=iv) rd competition training lnage lnmanagerexp i.sml c1 c2 c3 i.isic i.ccode, vce(cluster ccode)
Code:
margins, dydx(x rd competition training lnage lnmanagerexp medium large c1 c2 c3) predict(pr) post nose
Comment