I am trying to run a proc mixed statement, after performing a proc mi on my original dataset. However, I can't find an option for output for the proc mixed statement in the SAS references. The example I have been seeing is from a proc reg statement, using "outest=". This does not work with proc mixed. Any suggestions?
Below is the code I have so far, going from the proc mi to the proc mixed. I am trying to get output from the proc mixed statement, so I can go on to perform a proc mianalyze.
proc mi data=CE.merge nimpute=20 seed=111111
out=CE.Imputed_Data2;
var MADRS BMI;
title 'PROC MI on Transposed Adiponectin File: MADRS and BMI';
run;
ods graphics off;
proc mixed data=CE.Imputed_Data2
<where I will insert a data ouput option> covout;
model <where I will insert variables for the model>;
by isid;
run; quit;
Thanks,
Jamie
Look at the following thread to see if anything there helps you out:
Steve Denham
Look at the following thread to see if anything there helps you out:
Steve Denham
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.