1 The SAS System 16:23 Thursday, February 10, 2000 NOTE: Copyright (c) 1998 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software Version 7 (TS P1) Licensed to UNIVERSITY OF WISCONSIN, Site 0002176032. NOTE: This session is executing on the OSF1 V4.0 platform. This message is contained in the SAS news file, and is presented upon initialization. Edit the files "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.65 seconds cpu time 0.28 seconds 1 options ls=79 ps=200 nocenter; 2 3 /* table of means */ 4 data dat; 5 infile 'brandx.dat' firstobs=2; 6 input Brand $ Temp $ Muser $ Soft $ Fr; NOTE: The infile 'brandx.dat' is: File Name=/afs/cs.wisc.edu/p/stat/src/statistics/pda/data/Brandx/brandx.dat, Owner Name=yandell,Group Name=yandell, Access Permission=rw-r--r--, File Size (bytes)=700 NOTE: 24 records were read from the infile 'brandx.dat'. The minimum record length was 27. The maximum record length was 27. NOTE: The data set WORK.DAT has 24 observations and 5 variables. NOTE: DATA statement used: real time 0.22 seconds cpu time 0.06 seconds 7 proc freq; 8 table Brand*Temp*Muser*Soft/ norow nocol nopercent; 9 weight Fr; NOTE: The PROCEDURE FREQ printed page 1. NOTE: PROCEDURE FREQ used: real time 0.89 seconds cpu time 0.09 seconds 10 proc genmod; 11 class Brand Temp Muser Soft; 12 model Fr = Brand Temp | Muser | Soft / rorder=data type1 type3 13 dist = poisson; 14 15 NOTE: Algorithm converged. NOTE: The scale parameter was held fixed. NOTE: The PROCEDURE GENMOD printed pages 2-3. NOTE: PROCEDURE GENMOD used: real time 0.31 seconds cpu time 0.21 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 2.27 seconds cpu time 0.70 seconds