I am analyzing survey data. I want to remove respondents that completed the survey more than once. A five-digit code was generated that enabled repeat responders to be identified (Variable name = privatecode).
I see various ways of using PROC SORT to remove duplicates and leave one observation (i.e. NODUPRECS, NODUPKEY). I want to remove ALL observations with the same private code.
How can I accomplish this?
Thanks!
Do you mean that you want to filter any privatecode if occures more than once ?
If so do:
proc sort data=have; by privatecode; run;
data want;
set have;
by privatecode;
if not (first.privatecode and last.privatecode) then delete;
run;
If by "filter" you mean remove, then yes!
There is one problem. Almost 400 observations have privatecode missing. These observations are being deleted because the privatecode is the same, missing.
What's the best work-around here?
Thanks!
if not (first.privatecode and last.privatecode) and not missing(privatecode) then delete;
In order to include all observations with missing privatecode, change my code to:
data want;
set have;
by privatecode;
if not (first.privatecode and last.privatecode)
and not missing(privatecode) then delete;
run;
Identify the singles and keep. Proc sql will do this:
proc sql; create table want as select b.* from ( select distinct privatecode from YOURDATESET group by privatecode having count(*)=1 ) as a left join YOURDATASET as b on a.private=b.privatecode; 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.