ARCHIVED: In SAS, how can I make my output more readable?

This content has been archived, and is no longer maintained by Indiana University. Information here may no longer be accurate, and links may no longer be available or reliable.

To make your SAS output easier to read and analyze, use the OPTIONS statement. Commonly used options are:

  • LINESIZE: Changes the width of your SAS output
  • PAGESIZE: Changes the number of lines of SAS output per page
  • NOCENTER: Changes the centering of SAS output

To activate these output options, enter the following statement in your program:

  OPTIONS PAGESIZE=54 LINESIZE=80 NOCENTER;

In this example, SAS will output 54 lines per page and 80 characters per line without centering the output. You can adjust these values to best suit your needs. The values you specify in the OPTIONS statement will remain in effect for the duration of your SAS session, or until you change it later in your SAS program.

If you have questions about using statistical and mathematical software at Indiana University, contact the UITS Research Applications and Deep Learning team.

This is document aevi in the Knowledge Base.
Last modified on 2023-05-09 14:41:45.