1 The SAS System 07:22 Monday, April 18, 2011 NOTE: Copyright (c) 2002-2008 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.2 (TS2M2) Licensed to UNIVERSITY OF FLORIDA-T/R, Site 70055083. NOTE: This session is executing on the Linux 2.6.24-28-server (LINUX) platform. You are running SAS 9. Some SAS 8 files will be automatically converted by the V9 engine; others are incompatible. Please see http://support.sas.com/rnd/migration/planning/platform/64bit.html PROC MIGRATE will preserve current SAS file attributes and is recommended for converting all your SAS libraries from any SAS 8 release to SAS 9. For details and examples, please see http://support.sas.com/rnd/migration/index.html This message is contained in the SAS news file, and is presented upon initialization. Edit the file "news" in the "misc/base" directory to display site-specific news and information in the program log. The command line option "-nonews" will prevent this display. NOTE: SAS initialization used: real time 0.04 seconds cpu time 0.02 seconds 1 options ps=54 ls=76; 2 3 data one; 4 infile 'marih_beam.dat'; 5 input variety 8 time 16 state 24 block 31-32 acidbeam 47-48; 6 sr_acid=sqrt(acidbeam); 7 run; NOTE: The infile 'marih_beam.dat' is: Filename=/home/winner/public_html/data/marih_beam.dat, Owner Name=winner,Group Name=winner, Access Permission=rwxrw-r--, Last Modified=Wed Apr 13 13:10:26 2011, File Size (bytes)=9408 NOTE: 192 records were read from the infile 'marih_beam.dat'. The minimum record length was 48. The maximum record length was 48. NOTE: The data set WORK.ONE has 192 observations and 6 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 2 The SAS System 07:22 Monday, April 18, 2011 8 9 proc glm; 10 class variety time state block; 11 model sr_acid = variety state variety*state block(state) 11 ! variety*block(state) 12 time variety*time state*time variety*state*time 12 ! time*block(state); 13 random block(state) variety*block(state) time*block(state); 14 run; NOTE: TYPE I EMS not available without the E1 option. 15 16 quit; NOTE: The PROCEDURE GLM printed pages 1-3. NOTE: PROCEDURE GLM used (Total process time): real time 0.08 seconds cpu time 0.08 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.13 seconds cpu time 0.12 seconds