SAS:如何使用一系列预先指定的预测值进行预测

时间:2017-01-25 05:40:06

标签: sas prediction predict

我使用proc nlmixedhere是一个可重现的例子。

proc nlmixed data="d:\data\hsb2";
   xb = b0 + b1*female + b2*write + b3*science;
   predict xb out=output1;
   model read ~ normal(xb,s2);
run;

output1包含基于xb的预测。我如何获得女性的预测,写作分数为0分,10分,20分,30分,40分和50分,科学分数为30分?基本上我的预测数据集看起来像这样

  female writing science
1      1       0      30
2      1      10      30
3      1      20      30
4      1      30      30
5      1      40      30
6      1      50      30

如何使用predict中的proc nlmixed语句对这组预先指定的值进行预测?

0 个答案:

没有答案