SAS Programming

DATA Step, Macro, Functions and more
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-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 2 replies
  • 586 views
  • 1 like
  • 2 in conversation