Hey I have some company data and i run a panel regression with firm fixed effects. I have a list of firm level controls. I run the regressions across 2 groups as given below
Now i am interested in the comparing the "ddXp_diff" coefficient. Hence i did the following after each of the regressions
I get the error
How do i use suest in reghdfe?
Code:
reghdfe pm p_diff l1.pm dd ddXp_diff rnd f_vol ind_vol mkt_conc ind_tang sales_growth net_ppe if sd==1, absorb(co_code) reghdfe pm p_diff l1.pm dd ddXp_diff rnd f_vol ind_vol mkt_conc ind_tang sales_growth net_ppe if sd==0, absorb(co_code)
Code:
est store coeff1 est store coeff2 suest coeff1 coeff2
unable to generate scores for model coeff2
suest requires that predict allow the score option
suest requires that predict allow the score option
Comment