Dear everyone,
I am using esttab command in Stata 14.2 to export results of multilevel mixed effects logit regressions to a MS Word table. I have one binary dependent variable, eight explanatory variables on the individual level, and two one the group (in this case country) level. The code I am using is below:
As you can see (eform t), I want odds ratios as a final result. Moreover, I want it in a form of a table in MS word.
---
As additional background information, please find results:
a) in Stata (before transformation to odds ratios)
b) in MS Word (after transformation)
b)
----
Could you, please, help me with following questions:
1. What lns1_1_1_cons, lns1_1_2_cons and atr_1_1_1_2 from the table a) stand for and how to interpret them?
2. Why they are not transfered to the MS Word table? Is it logically possible to transform them into odds ratios? And is it tehnically possible to export these odds ratios to a Word table?
----
Thank you!
I am using esttab command in Stata 14.2 to export results of multilevel mixed effects logit regressions to a MS Word table. I have one binary dependent variable, eight explanatory variables on the individual level, and two one the group (in this case country) level. The code I am using is below:
Code:
eststo clear eststo: xtmelogit dV var1 var2 var3 var4 var5 var6 var7 var 8 || groupidentifier:, or eststo: xtmelogit dV var1 var2 var3 var4 var5 var6 var7 var8 || groupidentifier: groupvar1, or cov(unstruct) eststo: xtmelogit dV var1 var2 var3 var4 var5 var6 var7 var8 || groupidentifier: groupvar2, or cov(unstruct) esttab, se wide transform(ln*: exp(@) exp(@)) esttab, eform t, using MML_logit_1.rtf, replace
---
As additional background information, please find results:
a) in Stata (before transformation to odds ratios)
b) in MS Word (after transformation)
Code:
--------------------------------------------------------------------------------------------------- (1) (2) (3) dV dV dV --------------------------------------------------------------------------------------------------- eq1 var1 -0.149*** (0.0190) -0.150*** (0.0190) -0.149*** (0.0190) var2 -0.0173 (0.0262) -0.0172 (0.0262) -0.0173 (0.0262) var3 0.115*** (0.0163) 0.116*** (0.0163) 0.115*** (0.0163) var4 0.118*** (0.0235) 0.118*** (0.0234) 0.118*** (0.0235) var5 -0.00388 (0.00693) -0.00396 (0.00693) -0.00388 (0.00693) var6 0.0793*** (0.00724) 0.0792*** (0.00724) 0.0793*** (0.00724) var7 0.0161 (0.0152) 0.0162 (0.0152) 0.0162 (0.0152) var8 -0.0856** (0.0300) -0.0854** (0.0300) -0.0858** (0.0300) _cons -0.0946 (0.144) -0.176 (0.141) -0.0958 (0.144) --------------------------------------------------------------------------------------------------- lns1_1_1 _cons 0.400*** (0.0544) 0.0119*** (0.00473) 0.00342** (0.00739) --------------------------------------------------------------------------------------------------- lns1_1_2 _cons 0.485 (0.184) 0.338** (0.135) --------------------------------------------------------------------------------------------------- atr1_1_1_2 _cons -1.287* (0.643) 7.058 (2623.0) --------------------------------------------------------------------------------------------------- N 20696 20696 20696 --------------------------------------------------------------------------------------------------- Standard errors in parentheses * p<0.05, ** p<0.01, *** p<0.001
b)
Code:
Exponentiated coefficients; t statistics in parentheses * p < 0.05, ** p < 0.01, *** p < 0.001
(1) (2) (3) dV dV dV eq1 Var1 0.861*** 0.861*** 0.862*** (-7.84) (-7.87) (-7.84) Var2 0.983 0.983 0.983 (-0.66) (-0.66) (-0.66) Var3 1.122*** 1.122*** 1.122*** (7.07) (7.08) (7.07) Var4 1.125*** 1.125*** 1.125*** (5.03) (5.02) (5.01) Var5 0.996 0.996 0.996 (-0.56) (-0.57) (-0.56) Var6 1.082*** 1.082*** 1.083*** (10.95) (10.94) (10.95) Var7 1.016 1.016 1.016 (1.06) (1.07) (1.07) Var8 0.918** 0.918** 0.918** (-2.85) (-2.84) (-2.85) N 20696 20696 20696
Could you, please, help me with following questions:
1. What lns1_1_1_cons, lns1_1_2_cons and atr_1_1_1_2 from the table a) stand for and how to interpret them?
2. Why they are not transfered to the MS Word table? Is it logically possible to transform them into odds ratios? And is it tehnically possible to export these odds ratios to a Word table?
----
Thank you!
Comment