Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
From | Misha Spisok <misha.spisok@gmail.com> |
To | statalist@hsphsun2.harvard.edu |
Subject | Re: st: How to print and append to file akin to -display-? |
Date | Tue, 15 Jun 2010 21:08:17 -0700 |
Can I answer my own question? Here's what I did, but I'm clearly open to better suggestions. sysuse auto, clear local regressors mpg rep78 headroom trunk weight file open myfile using testfile.txt, write replace foreach var of varlist `regressors' { quietly { regress price `var' } file write myfile %10s "coef `var' " _column(24) %7.3f (_b[`var']) _n file write myfile %10s "t-stat `var' " _column(24) %7.3f (_b[`var']/_se[`var']) _n } file close myfile Thanks. Misha On Tue, Jun 15, 2010 at 8:10 PM, Misha Spisok <misha.spisok@gmail.com> wrote: > Hello, Statalist, > > I'd like to know how I can print and append my own "output" to a file. > > For example, > > sysuse auto, clear > local regressors mpg rep78 headroom trunk weight > foreach var of varlist `regressors' { > quietly { > regress price `var' > } > display in yellow "coef `var'" _column(24) _b[`var'] > display in white "t-stat `var'" _column(24) _b[`var']/_se[`var'] > } > > Rather than displaying these, I want to print what follows -display- > to a file (pardon me if this is the incorrect terminology). > > Thanks for your time. > > Best, > > Misha > * > * For searches and help try: > * http://www.stata.com/help.cgi?search > * http://www.stata.com/support/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/statalist/faq * http://www.ats.ucla.edu/stat/stata/