1 The SAS System 14:49 Thursday, February 28, 2013 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-30-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.01 seconds cpu time 0.01 seconds 1 options ps=54 ls=78; 2 3 data one; 4 infile 'breathalyzer.dat'; 5 input machine subject repnum bac; 6 run; NOTE: The infile 'breathalyzer.dat' is: Filename=/home/winner/public_html/data/breathalyzer.dat, Owner Name=winner,Group Name=winner, Access Permission=rwxrw-r--, Last Modified=Tue Feb 19 14:01:02 2013, File Size (bytes)=5940 NOTE: 180 records were read from the infile 'breathalyzer.dat'. The minimum record length was 32. The maximum record length was 32. NOTE: The data set WORK.ONE has 180 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 2 The SAS System 14:49 Thursday, February 28, 2013 7 8 proc glm; 9 class machine subject; 10 model bac = machine subject machine*subject; 11 run; 12 13 NOTE: The PROCEDURE GLM printed pages 1-2. NOTE: PROCEDURE GLM used (Total process time): real time 0.03 seconds cpu time 0.04 seconds 14 proc mixed; 15 class machine subject; 16 model bac = machine; 17 random subject machine*subject; 18 run; NOTE: Convergence criteria met. NOTE: A linear combination of covariance parameters is confounded with the residual variance. NOTE: The PROCEDURE MIXED printed pages 3-4. NOTE: PROCEDURE MIXED used (Total process time): real time 0.07 seconds cpu time 0.01 seconds 19 NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.14 seconds cpu time 0.07 seconds