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