Illustration of ODS Graphics
/*--------------------------------------------------------------
SAS Sample Library
Name: varex06.sas
Description: Example program from SAS/ETS User's Guide,
The VARMAX Procedure
Title: Illustration of ODS Graphics
Product: SAS/ETS Software
Keys: Vector AutoRegressive Moving-Average
processes with eXogenous regressors
PROC: VARMAX
Notes:
--------------------------------------------------------------*/
ods graphics on;
title "Illustration of ODS Graphics";
proc varmax data=sashelp.workers plot(unpack)=(residual model forecasts);
id date interval=month;
model electric masonry / dify=(1,12) noint p=1;
output lead=12;
run;