The SAS plot procedure always gives me a plot that is too big to fit into one screen. How can I reduce the size of the plot?
One way to reduce the size of the plot output is to specify the dimensions of the vertical and horizontal axes by using the VPERCENT and HPERCENT options in PROC PLOT, as shown below:
PROC PLOT HPERCENT=50 VPERCENT=33;
PLOT x*y;
RUN;
For more information, click on the Help button in the SAS menu bar and scroll to SAS Help and Documentation.
If you have further questions, send E-mail to stats@ssc.utexas.edu.