Dear all,
I have estimated the following models using reghdfe (after installing reghdfe and ftools via ssc install):
I would like to test whether the coefficient on the interaction term c.Perf#c.Digital is statistically different between the two groups defined by Down (i.e., Down == 1 vs. Down == 0).
Could you please advise on the appropriate method or command to perform this test?
I have estimated the following models using reghdfe (after installing reghdfe and ftools via ssc install):
Code:
use "dta\raw", clear global cvars "Size Lev Age Growth TQ NonSoe Top1 BoardSize BoardInd Dual MShare" reghdfe Comp c.Perf c.Digital c.Perf#c.Digital $cvars if Down == 1, absorb(Stkcd Year) cluster(Stkcd) reghdfe Comp c.Perf c.Digital c.Perf#c.Digital $cvars if Down == 0, absorb(Stkcd Year) cluster(Stkcd)
Could you please advise on the appropriate method or command to perform this test?
Comment