By default,
PROC PRINT uses an identical layout for all observations on a page
of output. First, it attempts to print observations on a single line,
as shown in the following figure.
If PROC PRINT cannot
fit all the variables on a single line, it splits the observations
into two or more sections and prints the observation number or the
ID variables at the beginning of each line. For example, in the following
figure, PROC PRINT prints the values for the first three variables
in the first section of each page and the values for the second three
variables in the second section of each page.
If PROC PRINT cannot
fit all the variables on one page, the procedure prints subsequent
pages with the same observations until it has printed all the variables.
For example, in the following figure, PROC PRINT uses the first two
pages to print values for the first three observations and the second
two pages to print values for the rest of the observations.
Note: You can alter
the page layout with the ROWS= option in the PROC PRINT statement.
(See the discussion of
ROWS= option.)
Note: PROC PRINT might produce
slightly different output if the data set is not RADIX addressable.
Version 6 compressed files are not RADIX addressable, while, beginning
with Version 7, compressed files are RADIX addressable. (The integrity
of the data is not compromised; the procedure simply numbers the observations
differently.)