FOCUS AREAS

SAS Sample Code



ods graphics on;

ods html style=default;
proc reg data=sashelp.class;
   model Weight = Height;
run; quit;
ods html close;

ods html style=statistical;
proc reg data=sashelp.class;
   model Weight = Height;
run; quit;
ods html close;

ods html style=analysis;
proc reg data=sashelp.class;
   model Weight = Height;
run; quit;
ods html close;

ods html style=journal;
proc reg data=sashelp.class;
   model Weight = Height;
run; quit;
ods html close;

ods html style=journal2;
proc reg data=sashelp.class;
   model Weight = Height;
run; quit;
ods html close;

ods graphics off;

Statistics and Operations Research Home Page