I am sorry. I am not familiar with reghdf, could you please explain why is the easiest way to do fixed-effect. apparently, it is not short cut by comparing these two codes with each other.
In your situation, here's what you gain.
With
Code:
reghdfe mig_jump immi_sh `control' if year>=1996 , absorb(id index index#per) cluster (dep)
But with to do it with -xtreg, fe- you need to code it as
Code:
xtset id xtreg mig_jump immi_sh `control' i.index i.index#per if year>=1996 , fe cluster (dep)
That's why -reghdfe- is more convenient for this.

Comment