Statalist


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

st: RE: re: fw: question


From   "Nick Cox" <[email protected]>
To   <[email protected]>
Subject   st: RE: re: fw: question
Date   Tue, 9 Dec 2008 23:12:07 -0000

Thanks to Kit for spotting the foolish error. If you used I as index,
you should use foo`I' within the loop. 

Nick 
[email protected] 

Kit Baum

Marjan asked

levelsof id, local(ID)

foreach I of local ID {
	hprescott myvar if id == `I', stub(foo)
}

egen foo = rowmax(foo*_*)


This code shouldn't run at all (beyond the first ID) because it will  
try to reuse the same variable names for each ID. You need to make the  
stubs vary by ID, like

stub(foo`i')

You will then get foo1.., foo2...,  etc. and you can use the rowmax  
trick on them.

*
*   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–2024 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   What's new   |   Site index