SAS Programs
A Simple SAS Program
data sasuser.admit2; set sasuser.admit; where age>39; run; proc print data=sasuser.admit2; run;
Components of SAS Programs
data sasuser.admit2; set sasuser.admit; where age>39; run; proc print data=sasuser.admit2; ...
Get SAS Certification Prep Guide: Base Programming for SAS 9, Third Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.