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.
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.