Stata The Stata listserver
[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]

st: RE: RE: statalist-digest V4 #1358


From   "David Harrison" <[email protected]>
To   <[email protected]>
Subject   st: RE: RE: statalist-digest V4 #1358
Date   Fri, 3 Sep 2004 13:38:18 +0100

The default behaviour of StatTransfer (in v7 at least) is to change all variable names to lower case - if you are getting upper case variable names then you probably have "Preserve name and label case if possible" checked in the StatTransfer options (I don't know that there is a command line switch for this).

Alternatively the variable names can be converted to lower case by 3 lines of Stata code (provided the lower case names would be unique)...

foreach v of varlist _all {
    ren `v' `=lower("`v'")'
}

David
[email protected]

-----Original Message-----
From: Ann E Fitzmaurice [mailto:[email protected]]
Sent: 03 September 2004 13:10
To: [email protected]
Subject: st: RE: statalist-digest V4 #1358



hi
This has been asked before

I am using stat transfer to transfer spss files into stata .dta and the
variable names all come over in capitals, is there a way to create the
stata file with the variable names in lower case

Thanks for your help

Regards

ann


*
*   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/



© Copyright 1996–2024 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   What's new   |   Site index