Hi everyone,
I am running a regression with fixed effects and using xtreg. I was wondering what the difference is between
And running
And looking at the individual dummy values for id. I am trying to have a look at the individual fixed effects and see whether the influence on y differs across id’s.
I am running a regression with fixed effects and using xtreg. I was wondering what the difference is between
Code:
xtreg y x1 x2 i.time, fe cluster (id) predict u if e(sample), u list u
Code:
reg y x1 x2 i.time i.id, cluster(id)

Comment