FOCUS AREAS

SAS Sample Code



ods html style=statistical;
ods graphics on;

proc varmax data=sashelp.workers plot(unpack)=(model residuals);
   id date interval=month;
   model electric masonry / dify=(1,12) noint p=1;
   output lead=12;
run;

ods graphics off;
ods html close;

Statistics and Operations Research Home Page