Illustration of ODS Graphics
/*--------------------------------------------------------------
SAS Sample Library
Name: esmex05.sas
Description: Example program from SAS/ETS User's Guide,
The ESM Procedure
Title: Illustration of ODS Graphics
Product: SAS/ETS Software
Keys: Exponential Smoothing Models
PROC: ESM
Notes:
--------------------------------------------------------------*/
ods graphics on;
proc esm data=sashelp.air out=_null_
lead=20
back=20
print=all
plot=all;
id date interval=month;
forecast air / model=addwinters transform=log;
run;