Chapter Contents |
Previous |
Next |
The RANK Procedure |
Procedure features: |
| |||||
Other features: |
|
Program |
options nodate pageno=1 linesize=80 pagesize=60;
proc sort data=swim out=pairs; by gender; run; |
proc rank data=pairs out=rankpair groups=3; |
by gender; |
var back free; run; |
proc print data=rankpair n; by gender; title 'Pairings of Swimmers for Backstroke and Freestyle'; run; |
Output |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.