1 The SAS System 10:27 Tuesday, March 24, 2015 NOTE: Copyright (c) 2002-2012 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.4 (TS1M1) Licensed to UNIVERSITY OF FLORIDA - SFA T&R, Site 70095659. NOTE: This session is executing on the Linux 2.6.32-504.8.1.el6.x86_64 (LIN X64) platform. NOTE: Updated analytical products: SAS/STAT 13.1 SAS/ETS 13.1 SAS/OR 13.1 SAS/IML 13.1 SAS/QC 13.1 NOTE: Additional host information: Linux LIN X64 2.6.32-504.8.1.el6.x86_64 #1 SMP Fri Dec 19 12:09:25 EST 2014 x86_64 Red Hat Enterprise Linux Server release 6.6 (Santiago) 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.07 seconds cpu time 0.02 seconds 1 options ps=54 ls=80; 2 data one; 3 input species branch location transpire moisture; 4 cards; NOTE: The data set WORK.ONE has 120 observations and 5 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 2 The SAS System 10:27 Tuesday, March 24, 2015 125 ; 126 127 proc glm; 128 class species branch location transpire; 129 model moisture = species location transpire 130 branch(species) species*location species*transpire 131 location*transpire location*branch(species) 131 ! transpire*branch(species) 132 species*location*transpire; 133 134 run; NOTE: The PROCEDURE GLM printed pages 1-2. NOTE: PROCEDURE GLM used (Total process time): real time 0.03 seconds cpu time 0.03 seconds 135 proc mixed; 136 class species branch location transpire; 137 model moisture = species location transpire 138 species*location species*transpire 139 location*transpire 140 species*location*transpire; 141 random branch(species) 142 location*branch(species) transpire*branch(species); 143 144 run; NOTE: Convergence criteria met. NOTE: Estimated G matrix is not positive definite. NOTE: The PROCEDURE MIXED printed pages 3-4. NOTE: PROCEDURE MIXED used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 145 quit; 146 quit; 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.07 seconds