RESOURCES / FOCUS AREAS
 

FOCUS AREAS

SAS Sample Code



ods html style=statistical;
ods graphics on;

proc reg data=sashelp.class;
   model Weight = Height;
run; 
quit;

ods graphics off;
ods html close;

Statistics and Operations Research Home Page