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]
Re: st: generating variable if condition met
From
Caliph Omar Moumin <[email protected]>
To
"[email protected]" <[email protected]>
Subject
Re: st: generating variable if condition met
Date
Thu, 5 Jul 2012 10:38:42 -0700 (PDT)
Thank you Phil
Kind Regards,
Moumin
Email: [email protected]
----- Original Message -----
From: Phil Clayton <[email protected]>
To: [email protected]
Cc:
Sent: Thursday, July 5, 2012 2:05 PM
Subject: Re: st: generating variable if condition met
I would use -destring- then -recode-, eg:
destring hproblem, replace
recode hproblem (1/50 53/103 ... 356/362=1) (nonmissing=2), gen(group)
See -help destring- and -help recode-. The above -destring- command will only work if you genuinely only have numbers in hproblem. There are various other options for recoding numeric variables documented in the user manuals.
Phil
On 05/07/2012, at 9:56 PM, Caliph Omar Moumin wrote:
> Dear All
>
>
> There is a string variable ‘hproblem’ containing diseases classification, which has codes from 1- 436.
> I want to generate a variable ‘type’ which is ‘hproblem’ classified into two; 1 for group1 and 0 for group2.
> The following codes of the variable ‘hproblem’ required to be included in group1
> 1-50, 53-103, 124-165, 167, 171, 175 -182, 188-200, 223-252, 257, 262-287, 313-336, 356-362
> AND ALL THE REST in group two.
> Is there a simple way to generate variable ‘type’?
> Kind Regards,
> Moumin
>
> Email: [email protected]
>
>
> *
> * 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/
*
* 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/