| |
[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]
st: RE: foreach
Sorry, I forgot something:
This sounds to me that Stata is having a hard time recognizing your
varlist.
Try listing each variable rather than using < p03a01a-p03a01m >.
Also, why generate y?
Why would you not use this:
foreach x in varlist ......... {
replace `x' = "1" if `x'=="si"
replace `x' = "0" if `x'=="no"
destring `x', replace
}
Justin White
-----Original Message-----
From: [email protected]
[mailto:[email protected]] On Behalf Of Ms. Marilyn
Ibarra
Sent: Friday, October 27, 2006 10:02 AM
To: [email protected]
Subject: st: foreach
I have data that is coded as "si" or "no". I need to change this to
numeric variables. I tried the following but keep getting an error
message that says, "varlist not found". Can anyone tell me what I am
doing wrong?
Here is the code:
foreach x in varlist p03a01 p03a01a-p03a01m {
gen y = (`x' == "si")
replace y = 0 if (`x' =="no")
drop `x'
rename y `x'
}
Thank you in advance,
Marilyn.
*
* 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/