BookmarkSubscribeRSS Feed
zizou1845
Calcite | Level 5

Hi All, I have a data that looks something like this:

Group     Year           Frequency

A            2010               5

A            2010               5

A            2010               5

B            2012               6

B            2012               6

B            2012               6

C            1999               1

C            1999               1

My question is, how do i remove duplicates so that it looks like this:

Group       Year           Frequency

A              2010               5

B              2012               6

C              1999               1

Thank You.

1 REPLY 1
Haikuo
Onyx | Level 15

Well, there are numerous methods that are cut for this kind of task:

1. Proc sort:

proc sort data=have out=want nodup;

by _all_;

run;

2. Proc SQL:

proc sql;

create table want as

select distinct * from have; quit;

3. First.var and Last.var.

data want;

set have;

  by id notsorted;

if first.id;

run;

4.  Hash(), given the question you have asked, I would recommend you get to know the first three options before trying to tackle hash()

Regards,

Haikuo

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
  • 1 reply
  • 398 views
  • 0 likes
  • 2 in conversation