1 The SAS System 07:25 Wednesday, April 13, 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.02 seconds cpu time 0.01 seconds 1 options ps=54 ls=76; 2 3 data one; 4 infile 'barley_h2o.dat'; 5 input genotype 8 site 16 year 23-24 rep 32 time 39-40 weight 5 ! 42-48; 6 site_id = 10*year+site; 7 rep_id=1000*genotype+100*site+10*(year-90)+rep; 8 run; NOTE: The infile 'barley_h2o.dat' is: Filename=/home/winner/public_html/data/barley_h2o.dat, Owner Name=winner,Group Name=winner, Access Permission=rwxrwxr-x, Last Modified=Wed Mar 31 12:05:31 2010, File Size (bytes)=5600 NOTE: 112 records were read from the infile 'barley_h2o.dat'. The minimum record length was 49. The maximum record length was 49. NOTE: The data set WORK.ONE has 112 observations and 8 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds 2 The SAS System 07:25 Wednesday, April 13, 2011 cpu time 0.01 seconds 9 10 proc mixed; 11 class genotype site year time; 12 model weight = site genotype site*genotype 13 time time*site; 14 random year(site) time*year(site) rep_id(genotype*site*year); 15 run; WARNING: Did not converge. NOTE: The PROCEDURE MIXED printed pages 1-3. NOTE: PROCEDURE MIXED used (Total process time): real time 0.04 seconds cpu time 0.05 seconds 16 17 proc glm; 18 where time > 0; 19 class genotype site year rep time; 20 model weight = site year(site) genotype site*genotype 21 genotype*year(site) 22 time time*site 23 time*year(site); 24 run; 25 26 quit; NOTE: The PROCEDURE GLM printed pages 4-5. NOTE: PROCEDURE GLM used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.09 seconds cpu time 0.08 seconds