Dear stata forum,
I am trying to save output from estat esize (after anova), for automatic save in excel. However, I can't seem to make it work with esize.
I here use a very simple example data set:
The excel will save headers, but A3, B3 and C3 are empty.
Does anyone know what I am doing wrong?
Thanks
I am trying to save output from estat esize (after anova), for automatic save in excel. However, I can't seem to make it work with esize.
I here use a very simple example data set:
Code:
use http://www.stata-press.com/data/r13/apple putexcel set "apple trees", sheet("tree") modify putexcel A1=("ES for apple trees") A2=("Eta sq") B2=("l_ci") C2=("u_ci") regress weight i.treatment estat esize scalar a2 = r(eta2) scalar b2 = r(lb_eta2) scalar c2 = r(ub_eta2) putexcel A3=(a2) B3=(b2) C3=(c2)
Does anyone know what I am doing wrong?
Thanks
Comment