| |
[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]
RE: st: Rename variables
Thanks Nikos!!!
It works perfectly.
Thanks also to Maarten and Gauri for their responses.
---Rodrigo
-----Original Message-----
From: [email protected]
[mailto:[email protected]] On Behalf Of Nikolaos A.
Patsopoulos
Sent: 17 January 2007 11:30
To: [email protected]
Subject: Re: st: Rename variables
[email protected] wrote:
> Dear list,
>
> I have a dataset with 220 variables. I would like to rename the last
200
> variables with a numerical ordered name.
> That is, from var21 to var200 I would like to rename them from _1 to
> _200.
>
> Is there any way of doing this at the same time for the 200 variables
> instead of going one by one using:
>
> Rename var21 _1
> Rename var22 _2
> .....
> Rename var200 _200
>
> Thanks!!!
>
> ---Rodrigo
>
> *
> * For searches and help try:
> * http://www.stata.com/support/faqs/res/findit.html
> * http://www.stata.com/support/statalist/faq
> * http://www.ats.ucla.edu/stat/stata/
>
>
>
Try:
local i=3
foreach var of varlist var3-var11 {
rename `var' _`i'
local i=`i'+1
}
Nikos
*
* For searches and help try:
* http://www.stata.com/support/faqs/res/findit.html
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/
*
* For searches and help try:
* http://www.stata.com/support/faqs/res/findit.html
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/