Dear Statalist - Community,
in my analysis I have several sets of control variables specified as globals and have created output tables successively integrating these globals.
My problem is that I would like to indicate in my tables which groups of control variables are in the model. I tried the "indicate()" add of the esttab command - described here: http://repec.org/bocode/e/estout/adv...ml#advanced006. But this does not work with my globals defined.
Please notice the following very simplified example of my code:
Thanks for your support in advance!
Warm regards,
Bianca
in my analysis I have several sets of control variables specified as globals and have created output tables successively integrating these globals.
My problem is that I would like to indicate in my tables which groups of control variables are in the model. I tried the "indicate()" add of the esttab command - described here: http://repec.org/bocode/e/estout/adv...ml#advanced006. But this does not work with my globals defined.
Please notice the following very simplified example of my code:
Code:
eststo a: reg y x $control1 eststo b: reg y x $control1 $control2 eststo c: reg y x $control1 $control2 $control3 local varlist x $control1 $control2 $control3 esttab a b c, indicate("control1 = $control1" "control2 = $control2" " control3 = $control3" )
Warm regards,
Bianca
Comment