Hi,
I would like to use this new feature in Stata 15, putdocx
Currently, I have code in this form:
I would like to write all these tables to a word document with putdocx instead of using esttab, but I dont really get how to do this.
I have tried multiple things, fx
but nothing seams to work. Any ideas on what I am doing wrong?
Thanks!
I would like to use this new feature in Stata 15, putdocx
Currently, I have code in this form:
Code:
eststo a : quietly logit total_abs abs_base `var', or
eststo b : quietly logit total_abs abs_base `var' `adjs' , or
eststo c : quietly logit total_abs abs_base `var' `adjs' `adja' , or
noisily esttab a b c, wide eform ci
I have tried multiple things, fx
Code:
putdocx begin putdocx table test=table(a b c) ...
Thanks!

Comment