Bookmark and Share

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:cumulative the looped results after -foreach-


From   Christopher Baum <[email protected]>
To   <[email protected]>
Subject   re:st:cumulative the looped results after -foreach-
Date   Sat, 18 Dec 2010 14:54:20 -0500

How to indicate the following list of variables
easily without typing each of them?


Just add, outside the foreach loop, 

local allvars 

and inside the inner foreach loop,

local allvars "`allvars'  `var'`i'"

You can then

display "`allvars'"

Also, it would seem that the lines

   g  `var'`i'=.
      replace `var'`i'=1 if group==`i'
      replace  var'`i'=0 if group~=`i'

could be replaced by
 
generate `var'`i' = (group == `i')

Kit

Kit Baum   |   Boston College Economics & DIW Berlin   |   http://ideas.repec.org/e/pba1.html
                              An Introduction to Stata Programming  |   http://www.stata-press.com/books/isp.html
   An Introduction to Modern Econometrics Using Stata  |   http://www.stata-press.com/books/imeus.html


*
*   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/


© Copyright 1996–2018 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   Site index