- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 08-09-2012 11:02 AM
(2015 views)
I have:
PROC MIXED COVTEST DATA=MyDataSet;
CLASS Subj;
MODEL Var3 = Var1 Var2 / SOLUTION DDFM=BW NOTEST OUTP=Pred;
RANDOM Var1 / SUBJECT=Subj TYPE=UN;
RUN;
When I use the formula derived from PROC MIXED I do not get the same values that the ‘OUTP=Pred’ data set displays. How can I recreate the Pred data set values?
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
For predicted values, I think you need the solution for the RANDOM statement as well, and in fact may need the entire G matrix to get everything to calculate the BLUPs you are looking for.
Steve Denham
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Apparently, if you use 'OUTPM=' this will give you the values from the formula derived by PROC MIXED.