Hi Team,
I need to delete the duplicate IDs with certain conditions from following dataset.
Data R;
input Id sal flag;
cards;
1 100 1
1 100 0
2 200 0
2 200 1
3 300 0
4 400 0
4 500 0
;
Run;
1. ID should be unique
2. If flag has '1' / '0' on same ID then need to keep the row with '1'
3. If flag has only '0' on ID then need to keep that row
4. If flag has multiple '0' with respect to same ID then need to keep any one or SAL is different then any
The output could be :
1 100 1
2 200 1
3 300 0
4 400 0
Looking for kind support.
Regards,
Uma Shanker Saini
Try this:
proc sql;
create table want as
select *
from r
group by id
having sal=max(sal) and flag=max(flag);
quit;
Data R;
input Id sal flag;
cards;
1 100 1
1 100 0
2 200 0
2 200 1
3 300 0
4 400 0
4 500 0
;
Run;
proc sort data=r out=temp;
by id sal descending flag;
run;
data want;
set temp;
by id sal;
if first.id and first.sal;
run;
Hi Novin,
Thanks for your quick help and code works perfectly fine as per requirement.
It would be greatful if we can use it via proc sql because i need to implement it into approx 40 million obs and trying for SAS DI.
Regards,
Uma Shanker Saini
Try this:
proc sql;
create table want as
select *
from r
group by id
having sal=max(sal) and flag=max(flag);
quit;
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.