Hi,
I have a confusion regarding heckman two-step model. As it's well-know to us, the first stage of Heckman is a probit model, and we obtain Inverse Mills Ratio from the first stage and then use OLS regression and insert IMR as an extra explanatory variable. However, I would like to ask does the heteroscedasticity matter in the first stage probit model (because heterskedasticity in probit model itself is a severe problem)?
My code is presented below (x2 is endogeneous variable in the second stage, say wage equation, and its instrument is z3)
The results from the second stage show that the IMR is insignificant (we have no selection bias).
Could you please let me know? Does the heteroskedasticity matter in the first stage (cuz it is a probit model)? Does it matter when lambda is siginificant? Shall we use
to address for such heteroskedasticity issue?
Thank you in advance.
Regards,
I have a confusion regarding heckman two-step model. As it's well-know to us, the first stage of Heckman is a probit model, and we obtain Inverse Mills Ratio from the first stage and then use OLS regression and insert IMR as an extra explanatory variable. However, I would like to ask does the heteroscedasticity matter in the first stage probit model (because heterskedasticity in probit model itself is a severe problem)?
My code is presented below (x2 is endogeneous variable in the second stage, say wage equation, and its instrument is z3)
Code:
* Step 1. estimate the selection equation probit LFP c1 c2 c3 x1 x2 x3 x5 x9 i.d i.x8 i.x7 predict xb, xb estimates store first * Step 2. generate inverse mills ratio gen mills = normalden(xb)/normprob(xb) sort xb scatter mills xb drop xb * Step 3. using 2sls regression ivregress 2sls y x1 x3 x4 x5 x6 i.x7 i.x8 i.d mills (x2 = z3), robust estimates store myheck
The results from the second stage show that the IMR is insignificant (we have no selection bias).
Could you please let me know? Does the heteroskedasticity matter in the first stage (cuz it is a probit model)? Does it matter when lambda is siginificant? Shall we use
Code:
hetprob
Thank you in advance.
Regards,
Comment