NOTE: There were 217 observations read from the dataset WORK.FITTED. NOTE: PROCEDURE GPLOT used: real time 1:43.30 423 data; 424 infile 'c:\turbo\stat2\e00\00-1.dat' firstobs=2; 425 input PRODUKT$ PROD_NR KAMP MAALING EXPOSURE F_R$ TYPE$; 426 n=125; 427 maaling=125*maaling/100; NOTE: The infile 'c:\turbo\stat2\e00\00-1.dat' is: File Name=c:\turbo\stat2\e00\00-1.dat, RECFM=V,LRECL=256 NOTE: 217 records were read from the infile 'c:\turbo\stat2\e00\00-1.dat'. The minimum record length was 52. The maximum record length was 52. NOTE: The data set WORK.DATA22 has 217 observations and 8 variables. NOTE: DATA statement used: real time 0.06 seconds 428 proc genmod; 429 class f_r type; 430 model MAALING/n = EXPOSURE F_R TYPE / link=logit dist=bin scale=p; 431 output out=fitted p=prob; NOTE: Non-integer response values have been detected for the Binomial distribution. NOTE: Algorithm converged. NOTE: The scale parameter was estimated by the square root of Pearson's Chi-Square/DOF. NOTE: There were 217 observations read from the dataset WORK.DATA22. NOTE: The data set WORK.FITTED has 217 observations and 9 variables. NOTE: PROCEDURE GENMOD used: real time 0.10 seconds 432 proc print; 433 run; NOTE: There were 217 observations read from the dataset WORK.FITTED. NOTE: PROCEDURE PRINT used: real time 0.00 seconds 434 proc gplot; 435 plot maaling*prob; 436 run; NOTE: 22 observation(s) contained a MISSING value for the MAALING * prob request.