Statalist


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

st: re: fw: question


From   Kit Baum <[email protected]>
To   [email protected]
Subject   st: re: fw: question
Date   Tue, 9 Dec 2008 18:02:42 -0500

< >
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.


Kit Baum, Boston College Economics and DIW Berlin
http://ideas.repec.org/e/pba1.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–2024 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   What's new   |   Site index