294 options pageno=1; NOTE: PROCEDURE ANOVA used: real time 1:20.19 cpu time 0.04 seconds 295 data threefct; 296 input rep a b c yield; 297 datalines; NOTE: The data set WORK.THREEFCT has 72 observations and 5 variables. NOTE: DATA statement used: real time 0.03 seconds cpu time 0.01 seconds 370 ;; 371 proc print; 372 title 'Printout of 3-factor Data'; 373 run; NOTE: There were 72 observations read from the data set WORK.THREEFCT. NOTE: PROCEDURE PRINT used: real time 0.00 seconds cpu time 0.00 seconds 374 *Comment All factors are fixed effects; 375 proc anova; 376 classes rep a b c; 377 model yield=rep a rep*a b a*b rep*a*b c a*c b*c a*b*c; 378 *COMMENT: rep*a is Error(a) and rep*a*b is Error(b); 379 test h=a e=rep*a; 380 test h=b a*b e=rep*a*b; 381 means a/lsd e=rep*a; 382 means b/lsd e=rep*a*b; 383 means c/lsd; 384 means a*b a*c b*c a*b*c; 385 title1'ANOVA for a Split-Split Plot Arrangement'; 386 run;