BookmarkSubscribeRSS Feed
Ranjeeta
Pyrite | Level 9
data discard keep;
set input;
by id;
if service in (4,13,20) then output discard;
if service in (4,5,6,7,8,13,20) then output keep;
run;

Hello

Can someone advise if the code above is correct to filter out the following records

If a patient has service equal to only 4 or 13, or 20 the exclude those patients

but if a patient has service equal to 5 or 6 or 7 or 8 along with 4 or 13, or 20 then keep them 

 

Many thanks 

7 REPLIES 7
jimbarbour
Meteorite | Level 14

Ranjeeta,

 

I would re-code as follows otherwise you will have cases with the same patient occurring in both output datasets:

 

data discard keep;
set input;
by id;
if  service in (4,13,20) then 
    output discard;
else
    output keep;
run;

 

 Jim

ed_sas_member
Meteorite | Level 14

Hi @Ranjeeta 

 

I would recommend that you use another name than "keep" for your output dataset as it may be confusing (SAS word).

There is an inconsistency in your code between both IF statements:

-> a patient who will have service=4 or 13 or 20 will be kept in both tables.

 

In your input dataset, are there many rows by patient?

 

data discard keep;
set input;
by id;
if service in (4,13,20) then output discard;
if service in (4,5,6,7,8,13,20) then output keep;
run;
Ranjeeta
Pyrite | Level 9
There are many rows per patient
what im trying to get is the patients who received services 4, or 13, or 20 along with 5 or 6 or 7 or 8
but if they received only 4, or 13, or 20 then dont keep them
ed_sas_member
Meteorite | Level 14

Hi @Ranjeeta 

 

Could you please test if the following code meet your expectations?

 

Best,

/*Retrieve the list of id for each table*/
proc transpose data=input out=input_tr (drop=_:) prefix=service;
	var service;
	by id;
run;

data id_tobediscarded id_tobekept;
	set input_tr;
	by id;
	length service_all $ 20;
	service_all = catx(",",of service:);
	if prxmatch('/(4|13|20)/',service_all) and prxmatch('/(5|6|7|8)/',service_all) then output id_tobekept;
	else if prxmatch('/(4|13|20)/',service_all) then output id_tobediscarded;
	drop service:;
run;

proc sql;
/*First table: keep*/
	create table keep as
	select a.*
	from input as a inner join id_tobekept as b
	on a.id = b.id;
/*Second table: discard*/
	create table discard as
	select a.*
	from input as a inner join id_tobediscarded as b
	on a.id = b.id;
quit;
Ranjeeta
Pyrite | Level 9

Thankyou was just trying the code but the 2nd step is not returning any obs 

data id_tobediscarded id_tobekept;
	set input_tr;
	by id;
	length service_all $ 20;
	service_all = catx(",",of service:);
	if prxmatch('/(4|13|20)/',service_all) and prxmatch('/(5|6|7|8)/',service_all) then output id_tobekept;
	else if prxmatch('/(4|13|20)/',service_all) then output id_tobediscarded;
	drop service:;
run;

 

Reeza
Super User

Are there other codes that may have to be ignored besides those values?

 


@Ranjeeta wrote:
There are many rows per patient
what im trying to get is the patients who received services 4, or 13, or 20 along with 5 or 6 or 7 or 8
but if they received only 4, or 13, or 20 then dont keep them

 

Ranjeeta
Pyrite | Level 9
No there are no other service codes that need to be ignored

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 7 replies
  • 445 views
  • 0 likes
  • 4 in conversation