Chapter Contents

Previous

Next
The PLOT Procedure

Example 4: Producing Multiple Plots per Page


Procedure features:
PROC PLOT statement options
HPERCENT=
VPERCENT=
Data set: DJIA

This example puts three plots on one page of output.


Program

options nodate pageno=1 linesize=120 pagesize=60;

 Note about code
proc plot data=djia vpercent=50 hpercent=50;


 Note about code
   plot high*year='*';

 Note about code
   plot low*year='o';

 Note about code
   plot high*year='*' low*year='o' / overlay box;
title 'Plots of the Dow Jones Industrial Average';
title2 'from 1954 to 1994';
run;


Output
[HTML Output]  [Listing Output]


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.