Hi,
I'm using the following code to perform fixed effects panel regression
I want to obtain robust standard errors and tried
But on looking further, I found another option
and now I'm confused as to what is the difference between the two.
I would greatly appreciate it if someone could explain the difference between these two options and which one would be appropriate for my purpose.
Thanks,
I'm using the following code to perform fixed effects panel regression
Code:
areg y x1 x2 i.year,a(HHID)
Code:
areg y x1 x2 i.year,a(HHID) robust
Code:
vce(robust)
I would greatly appreciate it if someone could explain the difference between these two options and which one would be appropriate for my purpose.
Thanks,
Comment