BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
rajabi83
Calcite | Level 5
Greetings and Regards My design is factorial split-plot with a strip factor I need to a correct model Data a; Input r a b c d tkw; Cards; proc glm; class r a b c d; model tkw=r a r*a b c b*c r(b c) a(b c) r*a(b c) d a*d d(b c) a*d(b c)/ss3; test h=r a e=r*a; test h=b c b*c e=r(b c); test h=a(b c) e=r*a(b c); means a/duncan alpha=0.05 e=r*a; means b/duncan alpha=0.05 e=r(b c); means c/duncan alpha=0.05 e=r(b c); means d/duncan alpha=0.05; means (b*c)/duncan alpha= 0.05 e= r(b c); run;
1 ACCEPTED SOLUTION

Accepted Solutions
StatsMan
SAS Super FREQ

This thread should help.  It is a model very similar to yours.  Moving your model to PROC MIXED is a more modern way of tacking any spit-plot design.  

View solution in original post

3 REPLIES 3
rajabi83
Calcite | Level 5

Greetings and Regards
My design is factorial split-plot with a strip factor
I need to a correct model

Data a;
Input r a b c d tkw;
Cards;



proc glm;
class r a b c d;
model tkw=r a r*a b c b*c r(b c) a(b c) r*a(b c) d a*d d(b c) a*d(b c)/ss3;
test h=r a e=r*a;
test h=b c b*c e=r(b c);
test h=a(b c) e=r*a(b c);
means a/duncan alpha=0.05 e=r*a;
means b/duncan alpha=0.05 e=r(b c);
means c/duncan alpha=0.05 e=r(b c);
means d/duncan alpha=0.05;
means (b*c)/duncan alpha= 0.05 e= r(b c);
run;
StatsMan
SAS Super FREQ

This thread should help.  It is a model very similar to yours.  Moving your model to PROC MIXED is a more modern way of tacking any spit-plot design.  

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 1814 views
  • 0 likes
  • 2 in conversation