proc sort data=sashelp.class out=class;
by sex;
run;
title 'PROC PRINT + BY';
proc print data=class;
by sex;
run;
title 'PROC PRINT + BY + ID';
proc print data=class;
id sex;
by sex;
run;
title 'PROC REPORT + GROUP';
proc report data=class;
column sex name age weight height;
define sex / group ;
define name / display;
define age / display;
define weight / display;
define height / display;
run;
The 2025 SAS Hackathon has begun!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.