Can any one send me a SAS example code for estimating BLUE in PROC MIXED?
Thanks
This the code I use and I am interested in BLUE values for entry*treatment interation. the SOLUTION statement computes the BLUE values, but the problem is since treatment has only 2 levels, the estimated BLUE vlaue for one of the levels of treatment is 0 and then the BLUE estimates for entry*treatment interaction is only computed for entry by non zero treatment level. Thanks in advance.
Proc mixed data= b covtest ; by _Name_ ;
class Rep entry treatment;
model col1 = entry treatment entry*treatment / outp=RESR residual solution DDFM= KENWARDROGER ;
random rep ;
lsmeans entry entry*treatment;
ods output Solutionf=BLUE;
ODS output lsmeans=ls;
Title 'Mixed model analysis';
run;
The LSMEANs are BLUEs.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.