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

Hi, I'm not sure how to answer the question from the picture below.  Any help is greatly appreciated!

#2.JPG

 

 

Here is how I coded it but it gives me incorrect output.

data aa;
input LEAGUE$4. NONCONF;
cards;
ACC  120
B10  110
B8   50
P10  22
EST  118
;
proc print;
run;

proc rank data=aa out=bb groups=2;
proc print ;
run;
1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20
proc rank data=aa out=bb groups=2;
var nonconf;
ranks half;
run;

View solution in original post

2 REPLIES 2
novinosrin
Tourmaline | Level 20
proc rank data=aa out=bb groups=2;
var nonconf;
ranks half;
run;
Amy0223
Quartz | Level 8
Thank you so much for your kind help!

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 2 replies
  • 342 views
  • 1 like
  • 2 in conversation