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: Assigning values from a list
From
"Lachenbruch, Peter" <[email protected]>
To
"'[email protected]'" <[email protected]>
Subject
st: RE: Assigning values from a list
Date
Fri, 21 May 2010 08:41:04 -0700
My initial assumption was that you are looking at codes from the Diagnostic and Statistical Manual, but the context you have seems to be something else. Remember, not everyone knows the acronyms you are familiar with. I had another 'brilliant' idea that was wiped out when I checked the help file. Austin's suggestion looks ok to me
Tony
Peter A. Lachenbruch
Department of Public Health
Oregon State University
Corvallis, OR 97330
Phone: 541-737-3832
FAX: 541-737-4001
-----Original Message-----
From: [email protected] [mailto:[email protected]] On Behalf Of [email protected]
Sent: Thursday, May 20, 2010 5:49 PM
To: [email protected]
Subject: st: Assigning values from a list
Hi All,
I was wondering if someone would help me with a basic programming questions.
I have 4 variables that are basically DSM codes and I would like to search
through those codes.
I would like to define lists of diseases and then pick which cases have those
diseases
So instead of writing
gen virus=(var1==53.20) |(var1==54.42) |(var1==54.43) | /*
*/ (var1==76.00) |(var1==76.90)
replace virus=((var2==53.20) |(var2==54.42) |(var2==54.43) | /*
*/ (var2==76.00) |(var2==76.90)) if virus==.
replace virus=((var3==53.20) |(var3==54.42) |(var3==54.43) | /*
*/ (var3==76.00) |(var3==76.90)) if virus==.
replace virus=((var4==53.20) |(var4==54.42) |(var4==54.43) | /*
*/ (var4==76.00) |(var4==76.90)) if virus==.
Repeat for several other categories of diseases - ends up with very long and
confusing code.
Is there a way of defining a list eg virus={53.20, 54.42, 54.43, 76.00, 76.90}
and checking to see whether var1-4 have values in the list?
Thanks in advance.
*
* 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/