202 options pageno=1; NOTE: PROCEDURE ANOVA used: real time 3:59.94 cpu time 0.06 seconds 203 data threefct; 204 input rep a b c yield; 205 datalines; NOTE: The data set WORK.THREEFCT has 72 observations and 5 variables. NOTE: DATA statement used: real time 0.04 seconds cpu time 0.02 seconds 278 ;; 279 proc print; 280 title 'Printout of 3-factor Data'; 281 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 282 *Comment All factors are fixed effects; 283 proc anova; 284 classes rep a b c; 285 model yield=rep a b a*b rep*a*b c rep*c a*c b*c a*b*c; 286 *COMMENT: rep*a*b is Error(a) and rep*c is Error(b); 287 test h=a b a*b e=rep*a*b; 288 test h=c e=rep*c; 289 means a b/lsd e=rep*a*b; 290 means c/lsd e=rep*c; 291 means a*b a*c b*c a*b*c; 292 title1'ANOVA for a Split Block Arrangement'; 293 run;