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 4.16 seconds cpu time 0.74 seconds 1 options pageno=1; 2 data factor; 3 input a b rep yield; 4 datalines; NOTE: The data set WORK.FACTOR has 16 observations and 4 variables. NOTE: DATA statement used: real time 0.71 seconds cpu time 0.03 seconds 21 ;; 22 proc print; 23 title 'Printout of Factorial Data'; 24 run; NOTE: There were 16 observations read from the data set WORK.FACTOR. NOTE: PROCEDURE PRINT used: real time 0.99 seconds cpu time 0.03 seconds 25 proc anova; 26 classes rep a b; 27 model yield=rep a b a*b; 28 means a b/lsd; 29 means a*b; 30 title 'ANOVA assuming A and B are fixed effects'; 31 run; NOTE: PROCEDURE ANOVA used: real time 0.52 seconds cpu time 0.01 seconds 32 proc anova; 33 classes rep a b; 34 model yield=rep a b a*b; 35 test h=a b e=a*b; 36 means a b/lsd e=a*b; 37 means a*b; 38 title 'ANOVA assuming A and B are random effects'; 39 run;