Features: |
CLASS statement
|
Other features: |
PRINT procedure |
Data set: | Charity |
proc means data=Charity n mean range chartype;
class School Year;
var MoneyRaised HoursVolunteered;
output out=Prize maxid(MoneyRaised(name) HoursVolunteered(name))= MostCash MostTime max= ;
title 'Summary of Volunteer Work by School and Year'; run;
proc print data=Prize; title 'Best Results: Most Money Raised and Most Hours Worked'; run;