The PRINT statement in all procedures is used to specify printing of one or more statistics or groups of statistics. This printed output appears by default in the standard output stream (console or printer), but may be redirected to a text file by using the FILENAME=filename option on the PRINT statement. If no PRINT statement is specified a default PRINT statement is generated automatically. This default statement is equivalent to the explicit PRINT statement:
PRINT /group1=default .... groupk=default;
where group1, group2, ..groupk are the default output groups for the procedure. Use the NOPRINT option on the PROC statement to suppress generation of this default PRINT statement.
The PRINT statement permits the following options:
FILENAME=filename
group_name=[DEFAULT|ALL]
keywordFMT=format
keywordUNT=power
NDIMCOL=count
NDIMROW=count
STYLE=[BOX|NCHS]
NOTE: the PRINT statement in the RECORDS procedure has slightly different options, which are described along with the other documentation for that procedure.