I would like to display two melogit models side-by-side using etable. They have different outcome variables but identical controls. On first attempt the control variables are not aligned so I attempt to fix this using the equations() option. However, non of my attempts are working. I would like to know how I can see what the equation numbers are. Can I list these somehow?
And is the following expected behaviour? The first attempt, with no equations() option does not show the level two variance (turn var(_cons)). When I attempt to specify any equations() option, the table is rendered with only the "Number of observations" row.
Thank you.
This code recreates my problem:
The four respective outputs look like this:
And is the following expected behaviour? The first attempt, with no equations() option does not show the level two variance (turn var(_cons)). When I attempt to specify any equations() option, the table is rendered with only the "Number of observations" row.
Thank you.
This code recreates my problem:
Code:
webuse auto, clear melogit foreign rep78 || turn:, est store m1 drop if mpg > 38 gen high = headroom > 4 melogit high rep78 || turn:, est store m2 etable, estimates(m1 m2) etable, estimates(m1 m2) equations(1) etable, estimates(m1 m2) equations(1:1) etable, estimates(m1 m2) equations(1:1, 2:2)
Comment