I want to delete row if id is the same
data have;input id name $ age $;cards;1 aik 26 1 aik 29 2 bik 23 2 bik 23 5 cik 30 6 cik 28 ;run;
I want this
1 aik 26 2 bik 23 5 cik 30 6 cik 2
proc sort data=have out=want nodupkey; by id; run;
View solution in original post
Dive into keynotes, announcements and breakthroughs on demand.
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.
Ready to level-up your skills? Choose your own adventure.
Browse our catalog!