sergiocorreia / reghdfe

Linear, IV and GMM Regressions With Any Number of Fixed Effects
http://scorreia.com/software/reghdfe/
MIT License
219 stars 57 forks source link

Predict residual outside e(sample) #278

Open shwlin-econ opened 1 year ago

shwlin-econ commented 1 year ago

Feature request

Is your feature request related to a problem? Please describe.

Is there any method to predict the residuals outside e(sample)?

Describe the solution you'd like

Hi Sergio, I am estimating a regression model with individual FE and year FE. The regression is controlled for some polynomial age trends because age is an important factor in the outcomes. Since the treatment is perfectly collinear with age, I estimate the effect in two steps as follow:

reghdfe outcome age_controls if treated!=1, a(id year) cl(birth_cohort) resid
predict residual, res
reg residual treated, r

However, predict does not predict for those treated==1. I've tried to force it to predict residuals for the treated observations by adding if !e(sample) but in vain. Is there any method to make it predict residuals for the observations excluded? I read some previous discussions about this issue, but I think my case is a little bit different. In my case, each individual is not treated in some years, and each year some individuals are not treated. No new FEs need to be estimated.

Regards, SW