1                                The SAS System
                                               08:33 Thursday, September 5, 2002

NOTE: Copyright (c) 1999-2001 by SAS Institute Inc., Cary, NC, USA. 
NOTE: SAS (r) Proprietary Software Release 8.2 (TS2M0)
      Licensed to UNC-CHAPEL HILL-SYSTEMWIDE-INTERNAL, Site 0039466001.
NOTE: This session is executing on the WIN_PRO  platform.



NOTE: SAS initialization used:
      real time           0.50 seconds
      cpu time            0.43 seconds
      
1          options formchar='|-???+=|-/\<>*' linesize=64;
2          
3          data work;
4             infile "../lrn/chr/4.dat";
5             input state $;
6             infile "../lrn/num/472.dat";
7             input y;
8             if (_n_ = 1) then delete;
9          

NOTE: The infile "../lrn/chr/4.dat" is:
      File Name=U:\t\datamine\cases\charity\lrn\chr\4.dat,
      RECFM=V,LRECL=256

NOTE: The infile "../lrn/num/472.dat" is:
      File Name=U:\t\datamine\cases\charity\lrn\num\472.dat,
      RECFM=V,LRECL=256

NOTE: Invalid data for y in line 1 1-8.
RULE:     ----+----1----+----2----+----3----+----4----+----5----
1         STATE 5
1         TARGET_D 8
state=STATE y=. _ERROR_=1 _N_=1
NOTE: 66901 records were read from the infile 
      "../lrn/chr/4.dat".
      The minimum record length was 2.
      The maximum record length was 5.
NOTE: 66901 records were read from the infile 
      "../lrn/num/472.dat".
      The minimum record length was 1.
      The maximum record length was 8.
NOTE: The data set WORK.WORK has 66900 observations and 2 
      variables.
NOTE: DATA statement used:
      real time           0.45 seconds
      cpu time            0.39 seconds
      

10         proc glm data=work;
11           classes state;
12           model y = state / solution;
2                        The SAS System
                               08:33 Thursday, September 5, 2002

13         
14         run;

15         
NOTE: The PROCEDURE GLM printed pages 1-4.
NOTE: PROCEDURE GLM used:
      real time           0.63 seconds
      cpu time            0.54 seconds
      

NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 
      27513-2414
NOTE: The SAS System used:
      real time           1.62 seconds
      cpu time            1.38 seconds
      
