1 The SAS System 11:22 Monday, April 4, 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.03 seconds cpu time 0.02 seconds 1 options ps=54 ls=80; 2 3 data one; 4 input ripening 1-8 storage 9-16 mixtemp 17-24 mixtime 25-32 5 totphenols 33-40 dphenol 41-48 pctyld 49-56 dyield 57-64 6 COI 65-72 dCOI 73-80 Dtot 81-88; 7 cards; NOTE: The data set WORK.ONE has 16 observations and 11 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 24 ; 25 26 proc glm; 27 class ripening storage mixtemp mixtime; 28 model Dtot = ripening storage mixtemp mixtime 29 ripening*storage ripening*mixtemp ripening*mixtime 30 storage*mixtemp storage*mixtime mixtemp*mixtime; 31 run; 2 The SAS System 11:22 Monday, April 4, 2011 32 33 quit; 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 NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.08 seconds cpu time 0.06 seconds