asdocx: Export from Stata to Word, Excel, LaTeX & HTML › Forums › asdocx Forum › Bug with Regression Labels on Categorical Variables › Reply To: Bug with Regression Labels on Categorical Variables
Actually, I just noted your output has “base” and not “(Reference:” before the category label anbd after the variable label. I wonder why that is?
My regression syntax is like this.
[code]
asdocx regress V1 V2 ///
$x_cont_controls $x_fact_controls, ///
replace nest ///
rep(p) save($export_folder\temp_reg01.doc) title(`reg1′) dec(2) abb(.) fs(8) label
asdocx regress V3 V2 ///
$x_cont_controls $x_fact_controls, ///
nest ///
rep(p) save($export_folder\temp_reg01) title(`reg1′) dec(2) stat(r2_a) abb(.) fs(8) label
[/code]