Stata The Stata listserver
[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]

Re: st: "estimates table" output in Latex


From   Christopher Auld <[email protected]>
To   [email protected]
Subject   Re: st: "estimates table" output in Latex
Date   Tue, 6 Apr 2004 16:24:03 -0600 (MDT)

Roger,

Thanks for your response.  I am familiar with parmest and had a look at
your paper, but it isn't clear to me how to use these commands to produce
output equivalent to "estimates table," at least without having to jump
through a lot of hoops.  If you don't mind, perhaps you could demonstrate
how to use this approach to generate output roughly equivalent to that
produced by the "est table" command in the following simple example?

---
#delimit ;
set obs 100;
quietly {;
gen x1=uniform(); gen x2=uniform(); gen x3=uniform();
gen y=1+x1+x2+x3+invnorm(uniform());
regress y x1;        estimates store model1;
regress y x1 x2 ;    estimates store model2;
regress y x1 x2 x3 ; estimates store model3;
};

estimates table model1 model2 model3, stats(r2 F aic) b(%8.2f) se(%8.2f) ;
---



Cheers, Chris.

Chris Auld
Department of Economics
University of Calgary
[email protected]


*
*   For searches and help try:
*   http://www.stata.com/support/faqs/res/findit.html
*   http://www.stata.com/support/statalist/faq
*   http://www.ats.ucla.edu/stat/stata/



© Copyright 1996–2024 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   What's new   |   Site index