Hi all,
I have panel data (firm id = id) and I’m running two OLS regressions with the same RHS variables but different dependent variables, so the estimation samples differ because each dependent variable has different missing values.
I want to run a Wald test to compare coefficients across the two models (e.g., test whether the coefficient on HARD_FREEZE and/or HARD_FREEZEXCSO_PRESENCE is the same in both regressions), without forcing both regressions to use the same number of observations (i.e., without restricting to the intersection sample).
What is the correct way to do this in Stata with clustered SEs?
Thanks!
I have panel data (firm id = id) and I’m running two OLS regressions with the same RHS variables but different dependent variables, so the estimation samples differ because each dependent variable has different missing values.
HTML Code:
reg z_NET HARD_FREEZE CSO_PRESENCE HARD_FREEZEXCSO_PRESENCE ///
SIZE ROA LEV MB OCF SD_OCF ///
BOARD_SIZE GENDER_RATIO BOARD_IND SUS_COMM FUND_STATUS FUND_RATIO ///
PLAN_SIZE i.year i.ff_12, vce(cluster id)
reg z_DISC HARD_FREEZE CSO_PRESENCE HARD_FREEZEXCSO_PRESENCE ///
SIZE ROA LEV MB OCF SD_OCF ///
BOARD_SIZE GENDER_RATIO BOARD_IND SUS_SCORE SUS_COMM FUND_STATUS FUND_RATIO ///
PLAN_SIZE i.year i.ff_12, vce(cluster id)
What is the correct way to do this in Stata with clustered SEs?
Thanks!

Comment