BookmarkSubscribeRSS Feed
anavabi
Calcite | Level 5

Can any one send me a SAS example code for estimating BLUE in PROC MIXED? 

Thanks

2 REPLIES 2
anavabi
Calcite | Level 5

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;

sld
Rhodochrosite | Level 12 sld
Rhodochrosite | Level 12

The LSMEANs are BLUEs.

 

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

What is ANOVA?

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.

Discussion stats
  • 2 replies
  • 1862 views
  • 0 likes
  • 2 in conversation