options ps=54 ls=76; data one; infile 'C\data\orlistat.dat'; input ffe 4-8 dose 12-16; run; proc nlin; parms b0=1 b1=1 b2=1; model ffe = b0 + ((b1*dose)/(b2+dose)); run; quit;