Statalist


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: st: Code to generate variable indicating date that CD4 drops below 250


From   "Michael I. Lichter" <[email protected]>
To   [email protected]
Subject   Re: st: Code to generate variable indicating date that CD4 drops below 250
Date   Tue, 31 Mar 2009 14:24:38 -0400

Assuming that your visitdate variables are sorted from earliest to latest, how's this?

gen firstdrop = .
forvalues i = 1/19 {
   replace firstdrop = visitdate`i' if cd4`i' < 250 & first250 == .
}

If they're not sorted you really should go to long format and sort them (which would be a reasonable idea here too).

-ml

Polis, Chelsea B. wrote:
Dear Statalisters,

I would like to create a variable in my dataset to indicate the date at
which a subjects CD4 counts dropped below 250.  My data is currently in
wide format, and each subject had anywhere from 1 to 19 visits.  For each
subject, I have up to 19 variables that indicate cd4 count (i.e., cd41 cd42
cd43 cd44 and so on), and up to 19 variables that indicate visit  date
(visitdate1 visitdate2 visitdate3 visitdate4 etc.).  I'd like to create a
variable to indicate the first date at which CD4 count dropped below 250,
if it ever dropped below 250.

Any suggestions on how to write such a code?

Many thanks,
Chelsea

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

--
Michael I. Lichter, Ph.D.
Research Assistant Professor & NRSA Fellow
UB Department of Family Medicine / Primary Care Research Institute
UB Clinical Center, 462 Grider Street, Buffalo, NY 14215
Office: CC 125 / Phone: 716-898-4751 / E-Mail: [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/



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