1 The SAS System 07:12 Thursday, April 5, 2012 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-29-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 ships; 4 infile 'ships.dat'; 5 input shiptype constprd operprd aggsrvc dmgincd; 6 lnaggsrvc=log(aggsrvc); 7 run; NOTE: The infile 'ships.dat' is: Filename=/home/winner/public_html/data/ships.dat, Owner Name=winner,Group Name=winner, Access Permission=rwxrw-r--, Last Modified=Tue Apr 5 07:58:04 2011, File Size (bytes)=714 NOTE: 34 records were read from the infile 'ships.dat'. The minimum record length was 20. The maximum record length was 20. NOTE: The data set WORK.SHIPS has 34 observations and 6 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 2 The SAS System 07:12 Thursday, April 5, 2012 8 9 10 proc genmod; 11 class shiptype constprd operprd; 12 model dmgincd = shiptype constprd / dist=poi link=log 12 ! offset=lnaggsrvc; 13 run; NOTE: Algorithm converged. NOTE: The scale parameter was held fixed. NOTE: The PROCEDURE GENMOD printed pages 1-2. NOTE: PROCEDURE GENMOD used (Total process time): real time 0.04 seconds cpu time 0.03 seconds 14 15 proc genmod; 16 class shiptype constprd operprd; 17 model dmgincd = shiptype operprd / dist=poi link=log 17 ! offset=lnaggsrvc; 18 run; NOTE: Algorithm converged. NOTE: The scale parameter was held fixed. NOTE: The PROCEDURE GENMOD printed pages 3-4. NOTE: PROCEDURE GENMOD used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 19 20 proc genmod; 21 class shiptype constprd operprd; 22 model dmgincd = constprd operprd / dist=poi link=log 22 ! offset=lnaggsrvc; 23 run; NOTE: Algorithm converged. NOTE: The scale parameter was held fixed. NOTE: The PROCEDURE GENMOD printed pages 5-6. NOTE: PROCEDURE GENMOD used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 24 25 proc genmod; 26 class shiptype constprd operprd; 27 model dmgincd = shiptype constprd operprd / dist=poi link=log 27 ! offset=lnaggsrvc 3 The SAS System 07:12 Thursday, April 5, 2012 28 type3; 29 run; NOTE: Algorithm converged. NOTE: The scale parameter was held fixed. NOTE: The PROCEDURE GENMOD printed pages 7-8. NOTE: PROCEDURE GENMOD used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 30 31 32 33 34 35 36 quit; NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.10 seconds cpu time 0.10 seconds