I am using the following code.
The output table lists the label of the dependent variable above the results column. Is it possible to remove this?
Thanks for your help.
Code:
esttab using "D:\Dropbox\Research\Dissertation\Data\2017\Work Station\employment.tex", /// here I'm telling stata that where I want to output the table and that I want to name the table _ht1_tab1 se label style(tex) booktabs /// here I ask to report st. errors with "se", use var labels with "label", not sure what style(*) does but use it, and booktabs specifies the table format fragment noconstant replace star(+ .15 * .1 ** .05 *** .01) /// fragment is necessary for Latex environment, noconstant supresses reporting the constant, replace allows you to overwrite, and star(...) specifies coeff star levels stats(N r2 , labels(`"Observations"' `"\(R^{2}\)"')) /// this say the extra stats I want to include and how i want them labelled nodepvars nobase nonumbers
Thanks for your help.
Comment