Hi!
I have the following model:

I have estimated the model using several different fixed effects specifications.
I would like to estimate the two preferred specifications I have using a First Difference estimation as a robustness test, as I was suggested to do.
My question is simple. To run my country FEs and time FEs, I code the following:
How does this translate in First Difference in Stata. The individual time-constant unobservables will be taken into account by the differencing, but I still need my time FEs to be included.
I tried using the
but I would like to see a clear example of the same model estimated with FE and with FD.
Thanks for the help!
I have the following model:
I have estimated the model using several different fixed effects specifications.
I would like to estimate the two preferred specifications I have using a First Difference estimation as a robustness test, as I was suggested to do.
My question is simple. To run my country FEs and time FEs, I code the following:
HTML Code:
reghdfe ln_agprod spei_05, absorb(country_id year) vce(cluster country_id) or alternatively reg ln_agprod spei_05 i.country_id i.year, cluster(country_id)
I tried using the
HTML Code:
d.(varlist
Thanks for the help!
Comment