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: forval query
From
Nick Cox <[email protected]>
To
"[email protected]" <[email protected]>
Subject
Re: st: forval query
Date
Fri, 5 Apr 2013 15:04:52 +0100
If your data are really panel or longitudinal data, then a -reshape
long- is now likely to be advisable.
For the record: Thanks to Billy for the plug, and I'll add that
-renvars- (SJ) was a joint production of Jeroen Weesie and myself. It
remains possibly useful for renaming for Stata <12.
Nick
[email protected]
On 5 April 2013 14:52, Mirnezami, Oliver <[email protected]> wrote:
> Thank you very much Maarten and Billy for your replies! Works brilliantly.
>
> -----Original Message-----
> From: [email protected] [mailto:[email protected]] On Behalf Of William Buchanan
> Sent: 05 April 2013 14:47
> To: [email protected]
> Subject: Re: st: forval query
>
> Why not just use the rename command with the group syntax? Additionally, Nick Cox wrote an amazingly helpful command for performing a variety of renaming tasks that may be helpful in other situations (-findit renvars-).
>
> This is completely untested but maybe you could try something like:
>
> forv i=2/10{
> loc val = 1990+(2*`i')
> rename r`i'mobila mobila_`val'
> }
>
> HTH,
> Billy
>
> Sent from my iPhone
>
> On Apr 5, 2013, at 6:32, "Mirnezami, Oliver" <[email protected]> wrote:
>
>> Hi
>>
>> I'm having some difficulty in using forval and foreach commands and was hoping for some help with the syntax please.
>>
>> Previously i've been renaming variables manually en masse using the following code:
>>
>> rename r2mobila mobila_1994
>> rename r3mobila mobila_1996
>> rename r4mobila mobila_1998
>> .etc..
>> rename r10mobila mobila_2010
>>
>> i.e. '2' corresponds with '1994', '3' with '1996' etc.
>>
>> I've tried using the following command but i get an r(111) error:
>>
>> forval i = 2/10 {
>> forval j = 1994/2010 {
>> foreach k in r`i'mobila {
>> rename `k' mobila_`j'
>> }
>> }
>> }
>>
>> I don't think I've managed to link '2' with '1994' and '3' with '1996' properly.
>>
*
* For searches and help try:
* http://www.stata.com/help.cgi?search
* http://www.stata.com/support/faqs/resources/statalist-faq/
* http://www.ats.ucla.edu/stat/stata/