Resources

Illustration of ODS Graphics

/*--------------------------------------------------------------

                    SAS Sample Library

        Name: tseex03.sas
 Description: Example program from SAS/ETS User's Guide,
              The TIMESERIES Procedure
       Title: Illustration of ODS Graphics
     Product: SAS/ETS Software
        Keys: time-stamped transactional data
        PROC: TIMESERIES
       Notes:

--------------------------------------------------------------*/

ods graphics on;

title "Illustration of ODS Graphics";
proc timeseries data=sashelp.workers out=_null_
                plots=(series corr decomp)
                crossplots=all;
   id date interval=month;
   var electric;
   crossvar masonry / dif=(1);
run;