BookmarkSubscribeRSS Feed
deezy55
Calcite | Level 5

Hey guys!

I need help with a specific part of my sas code.

I am supposed to use first. / last. and RETAIN to keep one record per patient and identify the highest and lowest temperature per patient.

I am working with VS(vital signs data set ) which has multiple visits per patient and multiple temperatures recorded as well as multiple blood pressure taken ect..

I have the following code, which keeps only one record per patient, but then there isnt a value for temperature for that patient, because the first time it sees usubjid (the unique subject identifier) the temperature isnt recorded then is that makes sense? I therefore am not sure how i would go about this?

** i created vitals earlier in my code

proc sort data = vitals;

by usubjid;

run;

data vitals2(keep= ftemp usubjid visitnum vstptnum);

set vitals;

by usubjid;

retain ftemp;

if first.usubjid and then output;

run;

1 REPLY 1
Peter_C
Rhodochrosite | Level 12

since one row (perpatient) cannot provide both the highest and the lowest without adapting the data to provide at least one extra column.

These challenges are often solved with an efficient approach called a DOW loop.

Should be able to find a few examples by searching the communities.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 318 views
  • 0 likes
  • 2 in conversation