FOCUS AREAS

SAS Sample Code



ods html style=statistical;
ods graphics on;

proc model data=sashelp.citimon;
   lhur = 1/(a * ip + b) + c;
   fit lhur;
   id date;
run;
quit;

ods graphics off;
ods html close;

Statistics and Operations Research Home Page