NOTE: Copyright (c) 1999 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software Version 8 (TS M0) Licensed to EDB-CENTRET, Site 0083218001. NOTE: This session is executing on the WIN_98 platform. NOTE: SAS initialization used: real time 9.66 seconds 1 data; 2 infile '\turbo\stat2\e00\00-1.dat' firstobs=2; 3 input PRODUKT$ PROD_NR KAMP MAALING EXPOSURE F_R$ TYPE$; 4 w=125*(MAALING/100)*(1-MAALING/100); 5 maaling=log(maaling)-log(100-maaling); 6 7 NOTE: The infile '\turbo\stat2\e00\00-1.dat' is: File Name=C:\turbo\stat2\e00\00-1.dat, RECFM=V,LRECL=256 NOTE: Invalid argument to function LOG at line 5 column 9. RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8---- 172 DanskNaturgas 44 12 0 0 r f 52 PRODUKT=DanskNat PROD_NR=44 KAMP=12 MAALING=. EXPOSURE=0 F_R=r TYPE=f w=0 _ERROR_=1 _N_=171 NOTE: 217 records were read from the infile '\turbo\stat2\e00\00-1.dat'. The minimum record length was 52. The maximum record length was 52. NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 at 5:21 NOTE: Mathematical operations could not be performed at the following places. The results of the operations have been set to missing values. Each place is given by: (Number of times) at (Line):(Column). 1 at 5:9 NOTE: The data set WORK.DATA1 has 217 observations and 8 variables. NOTE: DATA statement used: real time 2.51 seconds 8 proc glm; 9 class f_r type; 10 weight w; 11 model MAALING = EXPOSURE F_R TYPE / SOLUTION; 12 output out=fitted predicted=fit; 13 NOTE: There were 217 observations read from the dataset WORK.DATA1. NOTE: The data set WORK.FITTED has 217 observations and 9 variables. NOTE: PROCEDURE GLM used: real time 2.97 seconds 14 data; 15 set fitted; 16 prob=exp(fit)/(1+exp(fit)); 17 maaling=100*exp(maaling)/(1+exp(maaling)); 18 19 NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 22 at 16:6 22 at 16:14 22 at 16:17 22 at 16:18 1 at 17:12 1 at 17:13 1 at 17:25 1 at 17:28 1 at 17:29 NOTE: There were 217 observations read from the dataset WORK.FITTED. NOTE: The data set WORK.DATA2 has 217 observations and 10 variables. NOTE: DATA statement used: real time 0.05 seconds 20 proc print; 21 22 NOTE: There were 217 observations read from the dataset WORK.DATA2. NOTE: PROCEDURE PRINT used: real time 0.15 seconds 23 proc gplot; 24 plot maaling*prob; 25 run; NOTE: 23 observation(s) contained a MISSING value for the MAALING * prob request. NOTE: Attachments for -2 reestablished for new parent. NOTE: Attachments for -3 reestablished for new parent. NOTE: Attachments for -4 reestablished for new parent. NOTE: Multiple messages generated. See LOG window. WARNING: ERROR: UNABLE TO ACCESS MESSAGE 4.957