BookmarkSubscribeRSS Feed
palolix
Pyrite | Level 9

Hi,

Does somebody knows the syntax for an incomplete block design with 2 or 3 factors?

Thank you!

1 REPLY 1
SteveDenham
Jade | Level 19

How about:

proc mixed data=zzz;

class factor1 factor2 block;

model response=factor1 factor2 factor1*factor2/solution ddfm=kr;

random block;

lsmeans factor1 factor2 factor1*factor2/cl;

run;

The key, of course, is in preparing the dataset zzz, so that it correctly reflects the incomplete block design.

Steve Denham

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1 reply
  • 1475 views
  • 0 likes
  • 2 in conversation