SAS 拟合模型

2025-05-23 09:33:59
推荐回答(1个)
回答(1):

proc nlin data=ex;
parms B31=0;
MODEL y = B1 + B2*(1 - EXP(B31*x));
RUN;