Print the data set. PROC PRINT prints the RANKPAIR data
set. The N option prints the number of observations in each BY group. The
TITLE statement specifies a title.
proc print data=rankpair n;
by gender;
title 'Pairings of Swimmers for Backstroke and Freestyle';
run;