For your variables that are numerical but stata has stored them as
string:
foreach var of varlist variables* {
destring `var', gen(new_`var')
drop `var'
rename new_`var' `var'
}
If you have variables that are string and you want the variable to be
numeric with strings as their labels:
foreach var of varlist variables* {
destring `var', gen(new_`var')
drop `var'
rename new_`var' `var'
}
On Feb 12, 2009, at 2:17 PM, Arina Viseth wrote:
Dear all,
I have a dataset that I imported from Excel using insheet. However,
many numerical variables (I have about 200 variables) are now showed
as string variables.
My question is the following: how can I transform each string
variable into numerical one - and also replicate their names -
without having to encode manually each one of them?
Thank you very much in advance for any help, I would very much
appreciate it.
Arina
*
* 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/