1 The SAS System 10:39 Tuesday, September 27, 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.02 seconds 1 options ps=54 ls=76; 2 3 data bgh11; 4 infile "bgh1.dat"; 5 input gender 8 trt 16 wtgain 18-24; 6 run; NOTE: The infile "bgh1.dat" is: Filename=/home/winner/public_html/data/bgh1.dat, Owner Name=winner,Group Name=winner, Access Permission=rwxrwxrwx, Last Modified=Mon Jan 28 14:27:29 2008, File Size (bytes)=1500 NOTE: 60 records were read from the infile "bgh1.dat". The minimum record length was 24. The maximum record length was 24. NOTE: The data set WORK.BGH11 has 60 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 2 The SAS System 10:39 Tuesday, September 27, 2011 7 8 proc sort; 9 by gender; 10 run; NOTE: There were 60 observations read from the data set WORK.BGH11. NOTE: The data set WORK.BGH11 has 60 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 11 12 13 proc glm; 14 by gender; 15 class trt; 16 model wtgain = trt; 17 means trt / hovtest=bf; 18 run; NOTE: Interactivity disabled with BY processing. NOTE: The PROCEDURE GLM printed pages 1-8. NOTE: PROCEDURE GLM used (Total process time): real time 0.04 seconds cpu time 0.04 seconds 19 quit; 20 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.07 seconds