Hi All
I am failing to tabulate my marginal effects results from my ologit. I have five outcomes and would like them to appear in one table. The commands I am using are as follows:
All this does is tabulate the first result into five columns.
Kind Regards
Nonsi Nkomo
I am failing to tabulate my marginal effects results from my ologit. I have five outcomes and would like them to appear in one table. The commands I am using are as follows:
Code:
est clear eststo clear *Ordered Logit model ologit W8GENA ehat W8DLOCUS i.sex i.eth1 i.W8EVERMAR W8DINCW i.W8WRKHRSA wksearly i.W8DDEGP i.W8TAKEAW i.W8FIZZY W8SOCIALMED i.W1tvYP i.W1fameatYP i.W8AUDIT2 W8SLEEP2 i.W5agebd10mum i.educp, nolog *Marginal effects eststo m1: margins, dydx(*) predict(outcome(1)) eststo m2: margins, dydx(*) predict(outcome(2)) eststo m3: margins, dydx(*) predict(outcome(3)) eststo m4: margins, dydx(*) predict(outcome(4)) eststo m5: margins, dydx(*) predict(outcome(5)) esttab m1 m2 m3 m4 m5
Kind Regards
Nonsi Nkomo
Comment