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

Hello,

 

I need to create a new variable that contains the answer with the highest frequency across variables (SAS version 9.4). For example:

id  var

100 2

100 2

100 2

100 4

100 5

101 3

101 3

101 1

101 2

101 3

102 4

102 4

102 5

102 2

102 1

 

I want to add a new variable, so that:

id newvar

100 2

101 3

102 4

 

It seems like there should be a relatively simple answer, but can't seem to figure out. I can transpose to wide if that is better. Any advice will be great, thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
Andygray
Quartz | Level 8

@at16 You could mark one of the two solutions that you intend to use as accepted and close the thread.

View solution in original post

6 REPLIES 6
pau13rown
Lapis Lazuli | Level 10

ods output onewayfreqs=test;

proc freq data=;

tables var;

by id;

run;

 

proc sort data=test;

by id descending frequency;

run;

 

proc sort data=test nodupkey;

by id;

run;

 

?

novinosrin
Tourmaline | Level 20
data have;
input id  var;
cards;
100 2
100 2
100 2
100 4
100 5
101 3
101 3
101 1
101 2
101 3
102 4
102 4
102 5
102 2
102 1
;

proc freq data=have order=freq noprint;
by id;
tables var/out=temp(drop=percent);
run;

data want;
set temp;
by id;
if first.id;
run;

Andygray
Quartz | Level 8

@at16 I meant mark the one of the above  contributors who gave you the solution. lol

Andygray
Quartz | Level 8

@at16 You could mark one of the two solutions that you intend to use as accepted and close the thread.

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
  • 6 replies
  • 1369 views
  • 2 likes
  • 4 in conversation