BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
mnguye17
Fluorite | Level 6

I'm am trying to categorize multiple diagnostic fields (diag1-diag12) across thousands of individuals (id, by row) according to 3 categories (A=always, S=Sometimes, N=Never). The final dataset should have a diagnostic category (dcat1-12) corresponding to each diagnostic field (diag1-12).

 

I've tried to adapt test scoring code found in "Get it together: Combining data with SAS MERGE, UPDATE, and SET" by Mel Widawski with some progress, but not the end result that I'm needing.

 

Here's an abbreviated example of the data I'm working with:

 

Have 1: Main Data

data have1 (label='Main');

input id:1. diag1: $7. diag2:$7. diag3:$7. diag4:$7.;

datalines;

1 S61131S S320 S32000B S32000B

2 S320 S320 S320 S320

3 S32000B S9702 S320 S61131S

4 S9702  . . .

;

run;

 

Have 2: Scoring Data

data have2 (label='scoring');

input icd:$7. category:$1.;

datalines;

S61131S S

S320 N

S32000B A

S9702 N

;

run;

 

Want: Scored Data

data want (label='scored');

input id:1. diag1: $7. diag2:$7. diag3:$7. diag4:$7. dcat1:$1. dcat2:$1. dcat3:$1. dcat4:$1.;

datalines;

1 S61131S S320 S32000B S32000B S N A A

2 S320 S320 S320 S320 N N N N

3 S32000B S9702 S320 S61131S A N N S

4 S9702  . . . N . . .

;

run;

 

I'd appreciate any guidance!

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

1. Create a format from Have 2

data diag_fmt;
set have2;

fmtname = 'diag_fmt';
type='C';
start = icd;
label=category;

run;

proc format cntlin=diag_fmt;
run;

 

2. Apply the format to Have 1. 

 

data want;
set have1;

array diag(*) diag1-diag4;
array dcat(*) $1. dcat1-dcat4;

do i=1 to dim(diag);
dcat(i) = put(diag1, $diag_fmt.);
end;

run;

 

I did not test this code, but it should work with some minor fixes necessary if the log generates any errors.

View solution in original post

5 REPLIES 5
Reeza
Super User

1. Create a format from Have 2

data diag_fmt;
set have2;

fmtname = 'diag_fmt';
type='C';
start = icd;
label=category;

run;

proc format cntlin=diag_fmt;
run;

 

2. Apply the format to Have 1. 

 

data want;
set have1;

array diag(*) diag1-diag4;
array dcat(*) $1. dcat1-dcat4;

do i=1 to dim(diag);
dcat(i) = put(diag1, $diag_fmt.);
end;

run;

 

I did not test this code, but it should work with some minor fixes necessary if the log generates any errors.

mnguye17
Fluorite | Level 6
Thank you for the quick reply and the references! It worked with minor adjustments to my existing data!
ballardw
Super User

You have2 data set is very close to what would be needed to create a custom format assuming none of the ICD values are repeated.

Example of modifying the data set as needed. Variable names expected by proc format must be used.

 

data have2 ;
input start :$7. label :$1.;
fmtname='Dcat';
type='C';
datalines;
S61131S S
S320 N
S32000B A
S9702 N
;

proc format cntlin=have2;
run;

Then you can use put(icdcodevalue, dcat.) to create the code.

 

Arrays make this easier for doing the same thing to multiple variables.

data want (label='Main');
   set have1;
   array dcat (4) $ 1;
   array diag diag1-diag4;
   do i=1 to dim(diag);
      dcat[i]= put(diag[i],dcat.);
   end;
   drop i;
run;

Note use of the code box opened with the forum's </> icon. The message windows will reformat text and may make code pasted into the windows not run because of changed white space or sometimes inserted html tags and such.

 

mnguye17
Fluorite | Level 6
Thank you for the helpful reply and the tip to make sure ICD codes aren't repeated. I'll note the code box formatting in the future. Cheers!

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
  • 5 replies
  • 578 views
  • 3 likes
  • 3 in conversation