Hi,
I’m using estout from SSC in Stata 15.1. I'm performing a xtlogit, and would like to export only margins using esttab.
Here is my code so far:
Any tips?
I’m using estout from SSC in Stata 15.1. I'm performing a xtlogit, and would like to export only margins using esttab.
Here is my code so far:
Code:
eststo clear xtset id_player id_round eststo: xtlogit cheat /// i.id_session i. id_round, Fe margins, dydx(*) estadd local Type_game "Game" estadd local Fixed "Yes" estimate store reg1 esttab using "$outputs\Tables\Table.tex", replace nomtitle compress label /// keep(*id_round *id_session ) /// se stats(Type_game Fixed N, fmt(%~#s 0 ) /// labels ("Type game" "Individual FE" "N")) b(3) se(3) nobaselevels
Comment