1 The SAS System 09:56 Thursday, October 7, 2010 NOTE: Copyright (c) 2002-2003 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) 9.1 (TS1M3) Licensed to UNIVERSITY OF FLORIDA-T/R, Site 0007029013. NOTE: This session is executing on the Linux 2.6.12-gentoo-r10 platform. NOTE: SAS 9.1.3 Service Pack 3 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 input twistlevel 8 testspeed 16 bobbin 24 hairiness 29-32; 5 cards; NOTE: The data set WORK.ONE has 54 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 60 ; 61 62 proc glm; 63 class twistlevel testspeed bobbin; 64 model hairiness = twistlevel testspeed twistlevel*testspeed 64 ! bobbin; 65 means twistlevel / tukey bon; 66 means testspeed / tukey bon; 67 means twistlevel*testspeed; 2 The SAS System 09:56 Thursday, October 7, 2010 68 run; NOTE: Means from the MEANS statement are not adjusted for other terms in the model. For adjusted means, use the LSMEANS statement. 69 70 quit; NOTE: The PROCEDURE GLM printed pages 1-7. NOTE: PROCEDURE GLM used (Total process time): real time 0.04 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.07 seconds cpu time 0.04 seconds