Hi all,
I am trying to make some changes in a etable, my goal is get variables header with bold font:
I did try with:
But I failed.

I did check some older post similar using dtable:
https://www.statalist.org/forums/for...t-their-levels
Thanks in advance
I am trying to make some changes in a etable, my goal is get variables header with bold font:
Code:
putdocx begin webuse nhanes2l logit highbp c.age##i.sex i.diabetes bmi est store logit etable, column(command) estimates(logit ) mstat(N, nformat(%9.0g)) mstat(aic, nformat(%9.3f)) mstat(bic, nformat(%9.3f)) mstat(r2_p, nformat(%9.3f)) showstars eqrecode(eq1 = modalidad_dicotomica1) putdocx collect
Code:
etable, column(command) estimates(logit ) mstat(N, nformat(%9.0g)) mstat(aic, nformat(%9.3f)) mstat(bic, nformat(%9.3f)) mstat(r2_p, nformat(%9.3f)) showstars eqrecode(eq1 = modalidad_dicotomica1) collect style cell vargrp#cell_type[row-header], font(,bold) collect style cell vargrp2#cell_type[row-header], font(,bold) #or: collect style cell vartype#cell_type[row-header], font(,bold) putdocx collect
I did check some older post similar using dtable:
https://www.statalist.org/forums/for...t-their-levels
Thanks in advance

Comment