Hello everyone.
I have a question that I hope you can help me with.
I have a logistic regression with 2 FE. The problem is, the fixed effects are for year and county (US), but the dataset is at the individual-level. So, I got an error (because I have several individuals per year and county):
I did this trying to run a -xtlogit- model...
And also, one of FE (county) it's high-dimensional, so when I try the standard -logit- regression takes 2 hours to run.
I have something like this (for the standard logit):
In conclusion, I don't know how to face this problem, of how to run a logit regression with FE and one HDFE.
I really appreciate any help on this.
I have a question that I hope you can help me with.
I have a logistic regression with 2 FE. The problem is, the fixed effects are for year and county (US), but the dataset is at the individual-level. So, I got an error (because I have several individuals per year and county):
Code:
xtset YEAR COUNTY . repeated time values within panel
And also, one of FE (county) it's high-dimensional, so when I try the standard -logit- regression takes 2 hours to run.
I have something like this (for the standard logit):
Code:
logit depvar var1-var10 i.var11 i.var12 i.YEAR i.COUNTY [pw=w], cluster(COUNTY)
I really appreciate any help on this.
Comment