Print the data set. PROC PRINT prints the RESULTS data
set. The N option prints the number of observations in each BY group. The
TITLE statement specifies a title.
proc print data=results n;
by district;
title 'Results of City Council Election';
run;