Dear All,
I have a question about something that I find confusing. Which one is correct? I am running a linear probability model regression with the establishment (id) and yearly (time) fixed effects. Standard errors are clustered at the exporter-importer pair level.
To get the exporter-importer pair level I used the "group" command and got xm.
1-
2-
3-
I think the 1st one is true. But every time I read more, I get confused.
Thanks,
JL
I have a question about something that I find confusing. Which one is correct? I am running a linear probability model regression with the establishment (id) and yearly (time) fixed effects. Standard errors are clustered at the exporter-importer pair level.
To get the exporter-importer pair level I used the "group" command and got xm.
Code:
egen xm= group(exporting_ind importing_ind)
Code:
reghdfe dep indep, absorb(id time) vce(cluster xm);
Code:
reghdfe dep indep i.time, absorb(id time) vce(cluster xm);
Code:
reghdfe dep indep i.time i.id, absorb(id time) vce(cluster xm);
Thanks,
JL
Comment