Dear all,
I ran the fixed effects regression and my code is as follows:
xtset d_id monthlydate1 xi :xtreg AR lncaptial lnfeerate lnage i.year if d_sample3==1&t>=-12&t<=12,fe vce(robust)
The code of "year" is :
gen year=cond(y>=1999&y<=2004,1,0)
replace year=2 if y>=2005&y<=2010
replace year=3 if y>=2011&y<=2015
replace year=4 if y>=2016&y<=2020
The d_id is the name of my sample and the monthlydate1 is including the year+month (e.g.2014m1)

Please tell me why the variables "_Iyear_2 _Iyear_3 _Iyear_4" are being dropped.
Thank you.
I ran the fixed effects regression and my code is as follows:
xtset d_id monthlydate1 xi :xtreg AR lncaptial lnfeerate lnage i.year if d_sample3==1&t>=-12&t<=12,fe vce(robust)
The code of "year" is :
gen year=cond(y>=1999&y<=2004,1,0)
replace year=2 if y>=2005&y<=2010
replace year=3 if y>=2011&y<=2015
replace year=4 if y>=2016&y<=2020
The d_id is the name of my sample and the monthlydate1 is including the year+month (e.g.2014m1)
Please tell me why the variables "_Iyear_2 _Iyear_3 _Iyear_4" are being dropped.
Thank you.
Comment