Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: st: PDF tables
From
William Buchanan <[email protected]>
To
[email protected]
Subject
Re: st: PDF tables
Date
Thu, 25 Oct 2012 06:05:08 -0700
Hi Bianca,
I would read through the help file for -estpost- which is a user-written command available from SSC. In short, you're not asking the command -estpost- to post anything at all and probably should have encountered an error message. Instead try
estpost sum gender age education, det
HTH,
Billy
On Oct 25, 2012, at 5:34 AM, Bianca B. wrote:
> Hi Stata users,
>
> I found in an old post of Martin Weìss the program below to
> obtain a table in tex format.
> // capt ssc inst estout
>
> qui{
> clear*
> set obs 10000
> gen x= rnormal()
>
> estpost summarize x, det
> }
>
> esttab . using myfile.tex, replace ///
> cells("count mean min p25 p50 p75 max") ///
> noobs page
>
> !texify -p -c -b --run-viewer myfile.tex
>
> I tried to modify this program to obtain a table with the summary statistics of my variables, gender age and education.
>
> estpost gender age education
> esttab . using myfile.tex, replace ///
> cells("Obs Mean StdDev Min Max") ///
> noobs page
>
> !texify -p -c -b --run-viewer myfile.tex
>
> The table I obtained shows only the title of colums without the statistics and the name of variables.
>
> Any tips on how I could corretly write the program is greatly appreciated.
>
> Bianca
>
>
>
>
> *
> * For searches and help try:
> * http://www.stata.com/help.cgi?search
> * http://www.stata.com/support/faqs/resources/statalist-faq/
> * http://www.ats.ucla.edu/stat/stata/
*
* For searches and help try:
* http://www.stata.com/help.cgi?search
* http://www.stata.com/support/faqs/resources/statalist-faq/
* http://www.ats.ucla.edu/stat/stata/