Illustration of ODS Graphics
/*--------------------------------------------------------------
SAS Sample Library
Name: expex02.sas
Description: Example program from SAS/ETS User's Guide,
The EXPAND Procedure
Title: Illustration of ODS Graphics
Product: SAS/ETS Software
Keys: time series conversion and interpolation
PROC: EXPAND
Notes:
--------------------------------------------------------------*/
ods graphics on;
proc expand data=sashelp.workers out=out
from=month to=qtr
plots=all;
id date;
convert electric=eout / method=spline
transformin=(movmed 4)
transformout=(movave 3);
run;