BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
vshn
Calcite | Level 5

data excess;

input id n1;

cards;

10 10

10 20

10 20

10 30

10 40

10 40

10 50

;

run;

now using proc sort separate and store  only unique records in dataA and all other records in dataB .

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

I think that the following will achieve what you want:

proc sort data = excess ;

  by id n1;

run;

data want dups;

  set excess;

  by id n1;

  if first.n1 and last.n1 then output want;

  else output dups;

run;

View solution in original post

5 REPLIES 5
Jagadishkatam
Amethyst | Level 16

try

proc sort data = excess out=wantdupout=dups nodupkey;

by id n1;

run;

the want dataset have unique records and dups have all other records. Hope this helps.

Thanks,

Jagadish

Thanks,
Jag
vshn
Calcite | Level 5

dataset want should be like this

id        n1

10     10

10     30

10     50

and dataset dups

id    n1

10      20

10      20

10      40

10      40

Jagadishkatam
Amethyst | Level 16

Thanks for providing the desired output. please try

dups dataset has duplicate records and unique will have unique records.

proc sort data=excess out=dups UNIQUEOUT= unique NOUNIQUEKEY;

by id n1;

run;

Thanks,

Jag

Thanks,
Jag
art297
Opal | Level 21

I think that the following will achieve what you want:

proc sort data = excess ;

  by id n1;

run;

data want dups;

  set excess;

  by id n1;

  if first.n1 and last.n1 then output want;

  else output dups;

run;

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 5 replies
  • 8653 views
  • 0 likes
  • 3 in conversation