I'm using SAS Proc GLM to make predictions for a dependent variable with some missing values. Note that all of the predictor variables are fully observed, i.e., the predictors contain no missing values. The standard syntax is:
proc glm data=test;
class a;
model dv=a b c/solution;
output out=testx p=pred;
run;
Since the predictors have no missing values the output data should contain predictions for the missing values wrt the dependent variable.
My output does not contain predictions for the missing values in the dependent variable.
What am I doing wrong?