Hi everyone.
Hope you have a nice day.
I tried to add a row at the bottom of the table output by -esttab- to mark the model used, such as using Yes/No to identify with or without fixed effects.
This is what I do now.
But I wish to avoid using the -estadd- command.
This requires me to use multiple lines of commands after estimating each model (-est store- and multiple -estadd-, if more than one FE is used.)
Can I declare the lines (FEs, maybe other texts in other situations) I wish to add in the -esttab- command instead of using -estadd-?
BTW, if I use: reg y x i.year.
Can anyone remind me which parameter I can use not to show the result of i.year in -esttab- but tag it in the foot?
Thanks!
Cheers,
Hall
Hope you have a nice day.
I tried to add a row at the bottom of the table output by -esttab- to mark the model used, such as using Yes/No to identify with or without fixed effects.
This is what I do now.
Code:
reghdfe y x , a(year) ... est store m1 estadd local yearfe "Yes" // after quite a few similar models on different "Y" reg... esttab m* uisng moldels.rtf, replace stats(N yearfe, label("Obs." "Year FE") fmt(%9.0fc %3s))
This requires me to use multiple lines of commands after estimating each model (-est store- and multiple -estadd-, if more than one FE is used.)
Can I declare the lines (FEs, maybe other texts in other situations) I wish to add in the -esttab- command instead of using -estadd-?
BTW, if I use: reg y x i.year.
Can anyone remind me which parameter I can use not to show the result of i.year in -esttab- but tag it in the foot?
Thanks!
Cheers,
Hall
Comment