The SUM and MEAN statements calculate sum and mean values for three
variables and print them with the specified format. The LABEL statement prints
a legend and uses labels instead of variable names. The FORMAT statement associates
picture formats with three variables.
sum brkfst lunch dinner / format=4.0;
mean brkfst lunch dinner / format=6.2;
label brkfst = 'Breakfasts Served'
lunch = ' Lunches Served'
dinner = ' Dinners Served';
format brkfst bfmt.
lunch lfmt.
dinner dfmt.;
title 'Meals Served in Company Cafeteria';
title2 'Mean Number by Business Day';
run;