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: RE: truncate variable names


From   "Nick Cox" <[email protected]>
To   <[email protected]>
Subject   st: RE: truncate variable names
Date   Mon, 26 Jul 2010 15:43:37 +0100

renvars, trim(8) 

where -renvars- is downloadable from the SJ files. -search renvars- for
precise location. 

Note that the first principles solution 

foreach v of var * { 
	local new = substr("`v'", 1, 8) 
	rename `v' `new' 
}

is more instructive about principles but will fail part-way through if
two or more variable names have the same first 8 characters. -renvars-
warns you of that problem in advance, so that you can rethink strategy. 

By the way, this strikes me as mostly a bad idea unless you are
exporting to some other software that requires it. 

Nick 
[email protected] 

SCHOUMAKER Bruno

I would like to truncate the variable names of my dataset to 8
characters.

Does anybody know how I can do that in 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