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 1.08 seconds cpu time 0.46 seconds 1 data crd; 2 input PLOT REP LABEL $ TRT HDDT HT STMBRK FHB YIELD; 3 datalines; NOTE: The data set WORK.CRD has 150 observations and 9 variables. NOTE: DATA statement used: real time 0.06 seconds cpu time 0.02 seconds 154 ;; 155 proc print; 156 title 'Printout of CRD Data with No Sampling'; 157 run; NOTE: There were 150 observations read from the data set WORK.CRD. NOTE: PROCEDURE PRINT used: real time 0.15 seconds cpu time 0.02 seconds 158 proc anova; 159 classes rep label; 160 model hddt ht stmbrk fhb yield=label; 161 means label/lsd; 162 title 'ANOVA for CRD with No Sampling'; 163 run;