1 The SAS System 12:17 Tuesday, August 30, 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.01 seconds cpu time 0.01 seconds 1 options ps=54 ls=76; 2 goptions reset=all dev=pdf gsfname=output gsfmode=replace; 3 4 proc format; 5 value species 1='tropical' 2='subtropical' 3='temperate'; NOTE: Format SPECIES has been output. 6 value injury 1='seldom' 2='often' 3='always'; NOTE: Format INJURY has been output. 7 run; NOTE: PROCEDURE FORMAT used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 8 9 data coldfish; 10 infile 'coldfish.dat'; 11 input species 8 injury 16; 12 run; NOTE: The infile 'coldfish.dat' is: Filename=/home/winner/public_html/data/coldfish.dat, 2 The SAS System 12:17 Tuesday, August 30, 2011 Owner Name=winner,Group Name=winner, Access Permission=rwxr-xr-x, Last Modified=Thu Nov 13 08:53:13 2008, File Size (bytes)=578 NOTE: 34 records were read from the infile 'coldfish.dat'. The minimum record length was 16. The maximum record length was 16. NOTE: The data set WORK.COLDFISH has 34 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 13 14 proc freq; 15 format species species. injury injury.; 16 tables species*injury; 17 run; NOTE: There were 34 observations read from the data set WORK.COLDFISH. NOTE: The PROCEDURE FREQ printed page 1. NOTE: PROCEDURE FREQ used (Total process time): real time 0.03 seconds cpu time 0.02 seconds 18 19 ods PDF file="coldfish_sas.pdf"; NOTE: Writing ODS PDF output to DISK destination "/home/winner/public_html/data/coldfish_sas.pdf", printer "PDF". 20 ods graphics on; 21 22 proc gchart; 23 format species species. injury injury.; 24 vbar species / discrete subgroup=injury; 25 vbar injury / discrete subgroup=species; 26 run; 27 ERROR: No logical assign for filename OUTPUT. NOTE: There were 34 observations read from the data set WORK.COLDFISH. NOTE: PROCEDURE GCHART used (Total process time): real time 0.20 seconds cpu time 0.19 seconds 28 proc gchart; 29 format species species. injury injury.; 30 vbar species / discrete group=injury; 3 The SAS System 12:17 Tuesday, August 30, 2011 31 vbar injury / discrete group=species; 32 run; 33 34 35 ods graphics off; 36 ods PDF close; NOTE: ODS PDF printed 4 pages to /home/winner/public_html/data/coldfish_sas.pdf. ERROR: No logical assign for filename OUTPUT. NOTE: There were 34 observations read from the data set WORK.COLDFISH. NOTE: PROCEDURE GCHART used (Total process time): real time 0.19 seconds cpu time 0.18 seconds ERROR: Errors printed on pages 2,3. NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.52 seconds cpu time 0.48 seconds