NOTE: Copyright (c) 1999-2001 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software Release 8.2 (TS2M0) Licensed to NORTH DAKOTA UNIVERSITY SYSTEM-SYSTEMWIDE-INTERNAL, Site 0011524002. NOTE: This session is executing on the WIN_PRO platform. NOTE: SAS initialization used: real time 3.28 seconds cpu time 0.72 seconds 1 options pageno=1; 2 data threefct; 3 input rep a b c yield; 4 datalines; NOTE: The data set WORK.THREEFCT has 72 observations and 5 variables. NOTE: DATA statement used: real time 0.75 seconds cpu time 0.03 seconds 77 ;; 78 proc print; 79 title 'Printout of 3-factor Data'; 80 run; NOTE: There were 72 observations read from the data set WORK.THREEFCT. NOTE: PROCEDURE PRINT used: real time 0.80 seconds cpu time 0.04 seconds 81 *COMMENT: ANOVA for A whole plot, BXC factorial arrangement for subplot. 82 All factors are fixed effects; 83 proc anova; 84 classes rep a b c; 85 model yield=rep a a(rep) b c a*b a*c b*c a*b*c; 86 *COMMENT: a(rep) is Error(a); 87 test h=a e=a(rep); 88 means a/lsd e=a(rep); 89 means b c/lsd; 90 means a*b a*c b*c a*b*c; 91 title1 'ANOVA for A whole plot, BxC factorial arrangement for 92 subplot'; 93 title2 'All factors fixed'; 94 run; 95 *COMMENT: ANOVA for AxB factorial arrangement for whole plot, C subplot. 96 All factors are fixed effects; NOTE: PROCEDURE ANOVA used: real time 0.66 seconds cpu time 0.06 seconds 97 proc anova; 98 classes rep a b c; 99 model yield=rep a b a*b a*b(rep) c a*c b*c a*b*c; 100 *COMMENT: a*b(rep) is Error(a); 101 test h=a b a*b e=a*b(rep); 102 means a b/lsd e=a*b(rep); 103 means c/lsd; 104 means a*b a*c b*c a*b*c; 105 title1 'ANOVA for AxB factorial arrangement for whole plot, C 106 suplot.'; 107 title2 'All factors fixed'; 108 run;