Dear Stata Users,
I am using the following regression:
what I want is to check if x2+x3 is significantly different from zero. I used the following code:
Is that right? The problem is that with a pooled ols I was using the following code, but “reghdfe” does not support it:
I am using the following regression:
Code:
reghdfe y x1 x2 x3 if inrange(fyear,2003, 2014), absorb(gvkey_destr fyear) vce(cluster gvkey_destr fyear)
Code:
test [x2 + x3] = 0
Code:
xi: reg y x1 x2 x3 if inrange(fyear,2003, 2014) estimate store c_zero_opport suest c_zero_opport, vce(cluster gvkey) test [mean]x2 + [mean]x3 = 0
Comment