925 options pageno=1; NOTE: PROCEDURE ANOVA used: real time 6:30.32 cpu time 0.03 seconds 926 data RCBD; 927 input SEEDRATE REP YIELD; 928 datalines; NOTE: The data set WORK.RCBD has 24 observations and 3 variables. NOTE: DATA statement used: real time 0.03 seconds cpu time 0.02 seconds 953 ;; 954 proc print; 955 title 'Printout of RCBD Data with No Sampling'; 956 run; NOTE: There were 24 observations read from the data set WORK.RCBD. NOTE: PROCEDURE PRINT used: real time 0.01 seconds cpu time 0.01 seconds 957 proc anova; 958 classes rep seedrate; 959 model yield=rep seedrate; 960 means seedrate/lsd; 961 title 'ANOVA for RCBD with No Sampling'; 962 run;