🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 11-07-2019 03:36 PM
(585 views)
Hi, I'm not sure how to answer the question from the picture below. Any help is greatly appreciated!
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
proc rank data=aa out=bb groups=2;
var nonconf;
ranks half;
run;
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
proc rank data=aa out=bb groups=2;
var nonconf;
ranks half;
run;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank you so much for your kind help!