Hi all,
I'm working on a 2SLS model in which I have two endogenous binary variables:
Is this the correct way to implement 2SLS when both endogenous variables are binary and the second stage is OLS?
🔹 Stata Code:
probit csopresence1 CSO_Percentage Firm_Size_w ROA_w Leverage_w Market_book_four_w Non_pension_CFO_w STD_CFO_w board_size_w GenderRatiogenderratio_w independent_percentage_w SUSTAIBILITY_COMITEE_FU Fund_Status_w FUNDING_RATIO_w Platn_Size_w i.year i.ff_12 , nocons robust cluster (id)
predict X1hat
probit FreezeXCSO second_instrumatial Firm_Size_w ROA_w Leverage_w Market_book_four_w Non_pension_CFO_w STD_CFO_w board_size_w GenderRatiogenderratio_w independent_percentage_w SUSTAIBILITY_COMITEE_FU Fund_Status_w FUNDING_RATIO_w Platn_Size_w i.year i.ff_12 , nocons robust cluster (id)
predict X2hat
asdoc ivregress 2sls market_adjusted_return_w Firm_Size_w ROA_w Leverage_w Market_book_four_w Non_pension_CFO_w STD_CFO_w board_size_w GenderRatiogenderratio_w independent_percentage_w SUSTAIBILITY_COMITEE_FU Fund_Status_w FUNDING_RATIO_w Platn_Size_w i.year i.ff_12 ( csopresence1 FreezeXCSO = X1hat X2hat ) , robust cluster (id)
estat first, forcenonrobust
estat endogenous csopresence1 FreezeXCSO
thanks
I'm working on a 2SLS model in which I have two endogenous binary variables:
- csopresence1
- FreezeXCSO
Is this the correct way to implement 2SLS when both endogenous variables are binary and the second stage is OLS?
🔹 Stata Code:
probit csopresence1 CSO_Percentage Firm_Size_w ROA_w Leverage_w Market_book_four_w Non_pension_CFO_w STD_CFO_w board_size_w GenderRatiogenderratio_w independent_percentage_w SUSTAIBILITY_COMITEE_FU Fund_Status_w FUNDING_RATIO_w Platn_Size_w i.year i.ff_12 , nocons robust cluster (id)
predict X1hat
probit FreezeXCSO second_instrumatial Firm_Size_w ROA_w Leverage_w Market_book_four_w Non_pension_CFO_w STD_CFO_w board_size_w GenderRatiogenderratio_w independent_percentage_w SUSTAIBILITY_COMITEE_FU Fund_Status_w FUNDING_RATIO_w Platn_Size_w i.year i.ff_12 , nocons robust cluster (id)
predict X2hat
asdoc ivregress 2sls market_adjusted_return_w Firm_Size_w ROA_w Leverage_w Market_book_four_w Non_pension_CFO_w STD_CFO_w board_size_w GenderRatiogenderratio_w independent_percentage_w SUSTAIBILITY_COMITEE_FU Fund_Status_w FUNDING_RATIO_w Platn_Size_w i.year i.ff_12 ( csopresence1 FreezeXCSO = X1hat X2hat ) , robust cluster (id)
estat first, forcenonrobust
estat endogenous csopresence1 FreezeXCSO
thanks
Comment