Hi SAS Community,
I am running a PROC MIXED procedure of the following:
proc hpmixed data=data.stand_10;
class x y z;
model log_quantity=a b c/s outp=out.xyz_&product;
random intercept/subject=x*y*z s;
random b/subject=x*y*z s;
random c/subject=x*y*z s;
ods output solutionf = data.FIXED_&product;
ods output solutionr = data.RANDOM_&product;
run;
Due to the insufficient memory of the computer through MIXED procedure, I have to use HPMIXED. However, it seems the procedure of HPMIXED does not allow me to do
ods output solutionf = data.FIXED_&product;
ods output solutionr = data.RANDOM_&product;
Does anyone has an idea to overcome this problem?
Best,
David