Bookmark and Share

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: AW: renaming variables


From   "Martin Weiss" <[email protected]>
To   <[email protected]>
Subject   st: AW: renaming variables
Date   Fri, 21 May 2010 10:50:56 +0200

<> 



*************
//create vars

clear*
set obs 1

forv i=53(3)108{
	gen var`i'=1
}

//-rename-
loc start 1990

foreach var of varlist var*{
	ren `var' `="year"+string(`start')'
	loc ++start
}
*************



HTH
Martin


-----Ursprüngliche Nachricht-----
Von: [email protected]
[mailto:[email protected]] Im Auftrag von Abhimanyu Arora
Gesendet: Freitag, 21. Mai 2010 10:45
An: [email protected]
Betreff: st: renaming variables

Dear statalist
I would like to rename my variables var53....var108 such that var53,
var56, var59 ......var107 etc...are renamed as year1990,
year1991......year2008 repectively. I tried to use renvars(by Jeroen
Weesie) and a forvalues loop, but am not able to succeed.
Is there any other way?
Thanks and regards
Abhimanyu

PS-my incorrect way follows


forvalues j =53(3)107{
forvalues i =1990/2008{
renvars postsub(`i',`j')    /*the arguments should be strings, I guess,
though*/
}
}
*
*   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/


© Copyright 1996–2018 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   Site index