Creating a Basic Report

To produce a simple list report, you first reference the library where your SAS data set is stored. You can also set system options to control the appearance of your reports. Then you submit a PROC PRINT step.
Syntax, PROC PRINT step:
PROC PRINT DATA=SAS-data-set;
RUN;
SAS-data-set is the name of the SAS data set to be printed.
In the program below, the PROC PRINT statement invokes the PRINT procedure and specifies the data set Therapy in the SAS library to which the libref Cert has been assigned.
libname cert 'C:UsersStudent1Cert'; 
proc print data=cert.therapy; 
run;
Notice the layout of the resulting report below. These are the default behaviors:
  • All observations and variables in the data set are printed.
  • A column for observation numbers appears on the far left.
  • Variables and observations appear in the order in which they occur in the data set.
Figure 6.1 Cert.Therapy Data Set (partial output)
Partial Output: Cert.Therapy Data Set (partial output)
Last updated: August 23, 2018
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.225.57.164