1 The SAS System 15:39 Monday, January 14, 2008 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 nodate nonumber ps=54 ls=76; 2 3 data one; 4 infile 'ballistic1.dat'; 5 input bulltype layers v50 sharp fsp; 6 v50_2=(v50**2)/10000; 7 v50f=v50*39.37/12; 8 run; NOTE: The infile 'ballistic1.dat' is: File Name=/home/winner/public_html/data/ballistic1.dat, Owner Name=winner,Group Name=winner, Access Permission=rw-------, File Size (bytes)=1025 NOTE: 25 records were read from the infile 'ballistic1.dat'. The minimum record length was 40. The maximum record length was 40. NOTE: The data set WORK.ONE has 25 observations and 7 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds The SAS System cpu time 0.00 seconds 9 10 proc print; 11 run; NOTE: There were 25 observations read from the data set WORK.ONE. NOTE: The PROCEDURE PRINT printed page 1. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 12 proc glm; 13 by bulltype; 14 model v50_2 = layers; 15 run; NOTE: Interactivity disabled with BY processing. 16 17 quit; NOTE: The PROCEDURE GLM printed pages 2-7. NOTE: PROCEDURE GLM used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.05 seconds cpu time 0.03 seconds