SAS Proc GLM预测输出

时间:2018-05-08 15:24:04

标签: sas prediction

我正在使用SAS Proc GLM来预测具有一些缺失值的因变量。注意,所有预测变量都被完全观察到,即预测变量不包含缺失值。标准语法是:

  

proc glm data = test;

     

一级;

     

模型dv = a b c / solution;

     

输出out = testx p = pred;

     

运行;

由于预测变量没有缺失值,因此输出数据应包含因变量的缺失值的预测。

我的输出不包含因变量中缺失值的预测。

我做错了什么?

1 个答案:

答案 0 :(得分:2)

您需要展示自己的作品。这个例子与你的说法相矛盾。

data class;
   set sashelp.class;
   x = ranuni(1);
   if x gt .9 then weight=.;
   run;
proc print;
   run;
proc glm;
   class sex; 
   model weight=sex height age / solution; 
   output out=testx p=pred r=r;
   run;
proc print;
   run;

enter image description here