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]
st: RE: loops
From
"Jesper Lindhardsen" <[email protected]>
To
<[email protected]>
Subject
st: RE: loops
Date
Wed, 21 Dec 2011 12:22:28 +0100
Hi there
You seem to miss to increment local I in your loop, eg, add
local i=i+1
before exiting the loop.
Hth,
Jesper
-----Original Message-----
From: [email protected]
[mailto:[email protected]] On Behalf Of Hawal Shamon
Sent: 21 December 2011 12:10
To: [email protected]
Subject: st: loops
Dear all!
I have problems in finding the correct syntax for a nested loop.
I
have the string variables AB01_01, AB01_02, ..., AB01_30 and like to
encode and rename them at the same time. Renaming is necessary to get
rid of the "_" in the variables name. Do the result is supposed to be
AB0101, AB0102, ..., AB0130.
I tried it with:
local i 1
while `i' <=30 {
foreach var of varlist AB01_01-AB01_30 {
encode `var', gen(AB01`i')
}
}
and received the following error message:
.AB011 already defined
I understand the problem. However, I have no clue how to avoid this
problem.
Can anyone help?
Thanks in advance!
Best,
Hawal
*
* 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/