Hello everyone,
I have firm-level data and I run a panel regression with year and industry fixed effects with clustered standard errors at firm level. I run the regressions across 2 subsamples as given below
What I want to do is to compare the coefficients of "Mast_Perc" across both regression models (subsamples).
So, when I use the following code (so I can use test command), I get the following error:
It sounds that I cannot use suest after REGHDFE. So, is there an alternative way to test if there a significant difference in "Mast_Perc" across both subsamples?
Many thanks
I have firm-level data and I run a panel regression with year and industry fixed effects with clustered standard errors at firm level. I run the regressions across 2 subsamples as given below
Code:
reghdfe IDIO_Log FRQ_DD1 Mast_Perc int1 SIZE LEV MTB VCFO CFO ROA LPCGDP POP INF HH CAPGDP legalregqual invIPI legalsys_Dummy, absorb(year i.Industry_Dummy) , if Openness_Dummy==0 estimates store IDIO0 reghdfe IDIO_Log FRQ_DD1 Mast_Perc int1 SIZE LEV MTB VCFO CFO ROA LPCGDP POP INF HH CAPGDP legalregqual invIPI legalsys_Dummy, absorb(year i.Industry_Dummy) , if Openness_Dummy==1 estimates store IDIO1
What I want to do is to compare the coefficients of "Mast_Perc" across both regression models (subsamples).
So, when I use the following code (so I can use test command), I get the following error:
Code:
suest IDIO0 IDIO1, vce (cluster ID)
unable to generate scores for model IDIO0
suest requires that predict allow the score option
suest requires that predict allow the score option
Many thanks
Comment