963 options pageno=1; NOTE: PROCEDURE ANOVA used: real time 2:38.94 cpu time 0.04 seconds 964 data RCBDSAMP; 965 INPUT Trt $ Rep Sample Yield; 966 datalines; NOTE: The data set WORK.RCBDSAMP has 18 observations and 4 variables. NOTE: DATA statement used: real time 0.03 seconds cpu time 0.01 seconds 985 ;; 986 proc print; 987 title 'Printout of RCBD Data with Sampling'; 988 run; NOTE: There were 18 observations read from the data set WORK.RCBDSAMP. NOTE: PROCEDURE PRINT used: real time 0.01 seconds cpu time 0.01 seconds 989 proc anova; 990 classes REP SAMPLE TRT; 991 model yield=rep TRT REP*TRT; 992 TEST H=REP TRT E=REP*TRT; 993 means TRT/lsd E=REP*TRT; 994 title 'ANOVA for RCBD with Sampling'; 995 run;