1 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: Copyright (c) 2002-2003 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) 9.1 (TS1M3) Licensed to HARVARD UNIV - SCHOOL OF PUBLIC HEALTH - T&R, Site 0001177014. NOTE: This session is executing on the SunOS 5.10 platform. NOTE: SAS 9.1.3 Service Pack 3 ----------------------------------------------------------------------- NBER NOTE: sas now defaults to sas9. sas8 or sas6 will invoke sas version 8 or 6 respectively. - 2005/10/21 ----------------------------------------------------------------------- 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.19 seconds cpu time 0.10 seconds 1 *options obs=4000 ; 2 options nocenter ; 3 4 /*------------------------------------------------ 5 by Jean Roth Mon Aug 14 15:53:44 EDT 2006 6 This program reads the 1981 NCHS Multiple Cause of Death Data Data File 7 8 Report errors to jroth@nber.org 9 This program is distributed under the GNU GPL. 10 See end of this file and 11 http://www.gnu.org/licenses/ for details. 12 ----------------------------------------------- */ 13 14 * The following line should contain the directory 15 where the SAS file is to be stored ; 16 17 libname library "."; NOTE: Libref LIBRARY was successfully assigned as follows: Engine: V9 Physical Name: /disk/nber10/SCCS/mortality/1981/data 18 19 * The following line should contain 20 the complete path and name of the raw data file. 2 The SAS System 13:51 Tuesday, December 11, 2007 21 On a PC, use backslashes in paths as in C:\ ; 22 23 %macro loop; 24 %do year=1975 %to 2004; 25 %let yr=%substr(&year.,3); 26 %if (&year.>=1974 and &year.<=1978) %then %do; %let start=26; %end; 27 %else %if (&year.>=1979 and &year.<=1990) %then %do; %let start=21; %end; 28 %else %if (&year.>=1991 and &year.<=1995) %then %do; %let start=6; %end; 29 %else %if (&year.>=1996 and &year.<=2004) %then %do; %let start=21; %end; 30 31 FILENAME datafile pipe "unzip -p /homes/data/mortality/&year./data/mort&year..zip "; 32 33 * The following line should contain the name of the SAS dataset ; 34 35 %let dataset =countyoc&year.; 36 37 DATA library.&dataset ; 38 INFILE datafile LRECL = 20000 ; 39 attrib stateoc length=3 label="State of occurence"; 40 attrib countyoc length=$5 label="County of occurence"; 41 INPUT 42 @&start. stateoc 2. 43 @&start. countyoc $5. 44 ; 45 46 proc format cntlin=library.fcounty; 47 48 proc freq noprint; 49 tables countyoc / out=sum&year. (drop=percent rename=(count=deaths)); 50 51 data library.sum&year.; 52 set sum&year.; 53 year=&year.; 54 55 proc sort; 56 by countyoc year; 57 proc print data=library.sum&year noobs; 58 format countyoc $coun82v.; 59 %end; 60 %mend; 61 %loop; NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1975/data/mort1975.zip " NOTE: 1895135 records were read from the infile DATAFILE. The minimum record length was 286. The maximum record length was 286. NOTE: The data set LIBRARY.COUNTYOC1975 has 1895135 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 19.35 seconds cpu time 18.39 seconds NOTE: Format YEARV has been output. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. 3 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: PROCEDURE FORMAT used (Total process time): real time 0.06 seconds cpu time 0.05 seconds NOTE: There were 1895135 observations read from the data set LIBRARY.COUNTYOC1975. NOTE: The data set WORK.SUM1975 has 3123 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 1.92 seconds cpu time 1.89 seconds NOTE: There were 3123 observations read from the data set WORK.SUM1975. NOTE: The data set LIBRARY.SUM1975 has 3123 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.02 seconds NOTE: There were 3123 observations read from the data set LIBRARY.SUM1975. NOTE: The data set LIBRARY.SUM1975 has 3123 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 3123 observations read from the data set LIBRARY.SUM1975. NOTE: The PROCEDURE PRINT printed pages 1-56. NOTE: PROCEDURE PRINT used (Total process time): real time 0.05 seconds cpu time 0.05 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1976/data/mort1976.zip " NOTE: 1911907 records were read from the infile DATAFILE. The minimum record length was 286. The maximum record length was 286. NOTE: The data set LIBRARY.COUNTYOC1976 has 1911907 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 17.84 seconds cpu time 16.91 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.05 seconds 4 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: There were 1911907 observations read from the data set LIBRARY.COUNTYOC1976. NOTE: The data set WORK.SUM1976 has 3124 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 1.84 seconds cpu time 1.83 seconds NOTE: There were 3124 observations read from the data set WORK.SUM1976. NOTE: The data set LIBRARY.SUM1976 has 3124 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 3124 observations read from the data set LIBRARY.SUM1976. NOTE: The data set LIBRARY.SUM1976 has 3124 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 3124 observations read from the data set LIBRARY.SUM1976. NOTE: The PROCEDURE PRINT printed pages 57-112. NOTE: PROCEDURE PRINT used (Total process time): real time 0.03 seconds cpu time 0.03 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1977/data/mort1977.zip " NOTE: 1902106 records were read from the infile DATAFILE. The minimum record length was 286. The maximum record length was 286. NOTE: The data set LIBRARY.COUNTYOC1977 has 1902106 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 18.20 seconds cpu time 17.23 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 1902106 observations read from the data set LIBRARY.COUNTYOC1977. NOTE: The data set WORK.SUM1977 has 3127 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): 5 The SAS System 13:51 Tuesday, December 11, 2007 real time 1.91 seconds cpu time 1.89 seconds NOTE: There were 3127 observations read from the data set WORK.SUM1977. NOTE: The data set LIBRARY.SUM1977 has 3127 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 3127 observations read from the data set LIBRARY.SUM1977. NOTE: The data set LIBRARY.SUM1977 has 3127 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 3127 observations read from the data set LIBRARY.SUM1977. NOTE: The PROCEDURE PRINT printed pages 113-168. NOTE: PROCEDURE PRINT used (Total process time): real time 0.03 seconds cpu time 0.03 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1978/data/mort1978.zip " NOTE: 1930627 records were read from the infile DATAFILE. The minimum record length was 286. The maximum record length was 286. NOTE: The data set LIBRARY.COUNTYOC1978 has 1930627 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 18.70 seconds cpu time 17.62 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 1930627 observations read from the data set LIBRARY.COUNTYOC1978. NOTE: The data set WORK.SUM1978 has 3128 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 1.86 seconds cpu time 1.85 seconds 6 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: There were 3128 observations read from the data set WORK.SUM1978. NOTE: The data set LIBRARY.SUM1978 has 3128 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 3128 observations read from the data set LIBRARY.SUM1978. NOTE: The data set LIBRARY.SUM1978 has 3128 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 3128 observations read from the data set LIBRARY.SUM1978. NOTE: The PROCEDURE PRINT printed pages 169-224. NOTE: PROCEDURE PRINT used (Total process time): real time 0.03 seconds cpu time 0.03 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1979/data/mort1979.zip " NOTE: 1916776 records were read from the infile DATAFILE. The minimum record length was 441. The maximum record length was 441. NOTE: The data set LIBRARY.COUNTYOC1979 has 1916776 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 21.67 seconds cpu time 20.09 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 1916776 observations read from the data set LIBRARY.COUNTYOC1979. NOTE: The data set WORK.SUM1979 has 3125 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 1.86 seconds cpu time 1.83 seconds NOTE: There were 3125 observations read from the data set WORK.SUM1979. NOTE: The data set LIBRARY.SUM1979 has 3125 observations and 3 variables. NOTE: DATA statement used (Total process time): 7 The SAS System 13:51 Tuesday, December 11, 2007 real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 3125 observations read from the data set LIBRARY.SUM1979. NOTE: The data set LIBRARY.SUM1979 has 3125 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.02 seconds NOTE: There were 3125 observations read from the data set LIBRARY.SUM1979. NOTE: The PROCEDURE PRINT printed pages 225-280. NOTE: PROCEDURE PRINT used (Total process time): real time 0.03 seconds cpu time 0.02 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1980/data/mort1980.zip " NOTE: 1993137 records were read from the infile DATAFILE. The minimum record length was 441. The maximum record length was 441. NOTE: The data set LIBRARY.COUNTYOC1980 has 1993137 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 22.21 seconds cpu time 20.68 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.05 seconds NOTE: There were 1993137 observations read from the data set LIBRARY.COUNTYOC1980. NOTE: The data set WORK.SUM1980 has 3124 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 1.91 seconds cpu time 1.89 seconds NOTE: There were 3124 observations read from the data set WORK.SUM1980. NOTE: The data set LIBRARY.SUM1980 has 3124 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 8 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: There were 3124 observations read from the data set LIBRARY.SUM1980. NOTE: The data set LIBRARY.SUM1980 has 3124 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 3124 observations read from the data set LIBRARY.SUM1980. NOTE: The PROCEDURE PRINT printed pages 281-336. NOTE: PROCEDURE PRINT used (Total process time): real time 0.03 seconds cpu time 0.03 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1981/data/mort1981.zip " NOTE: 1981317 records were read from the infile DATAFILE. The minimum record length was 441. The maximum record length was 441. NOTE: The data set LIBRARY.COUNTYOC1981 has 1981317 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 20.41 seconds cpu time 19.22 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 1981317 observations read from the data set LIBRARY.COUNTYOC1981. NOTE: The data set WORK.SUM1981 has 3126 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 1.90 seconds cpu time 1.85 seconds NOTE: There were 3126 observations read from the data set WORK.SUM1981. NOTE: The data set LIBRARY.SUM1981 has 3126 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 3126 observations read from the data set LIBRARY.SUM1981. NOTE: The data set LIBRARY.SUM1981 has 3126 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds 9 The SAS System 13:51 Tuesday, December 11, 2007 cpu time 0.00 seconds NOTE: There were 3126 observations read from the data set LIBRARY.SUM1981. NOTE: The PROCEDURE PRINT printed pages 337-392. NOTE: PROCEDURE PRINT used (Total process time): real time 0.03 seconds cpu time 0.04 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1982/data/mort1982.zip " NOTE: 1977961 records were read from the infile DATAFILE. The minimum record length was 441. The maximum record length was 441. NOTE: The data set LIBRARY.COUNTYOC1982 has 1977961 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 20.26 seconds cpu time 19.14 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.05 seconds NOTE: There were 1977961 observations read from the data set LIBRARY.COUNTYOC1982. NOTE: The data set WORK.SUM1982 has 3128 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 1.85 seconds cpu time 1.83 seconds NOTE: There were 3128 observations read from the data set WORK.SUM1982. NOTE: The data set LIBRARY.SUM1982 has 3128 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 3128 observations read from the data set LIBRARY.SUM1982. NOTE: The data set LIBRARY.SUM1982 has 3128 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.02 seconds 10 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: There were 3128 observations read from the data set LIBRARY.SUM1982. NOTE: The PROCEDURE PRINT printed pages 393-448. NOTE: PROCEDURE PRINT used (Total process time): real time 0.03 seconds cpu time 0.02 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1983/data/mort1983.zip " NOTE: 2022190 records were read from the infile DATAFILE. The minimum record length was 441. The maximum record length was 441. NOTE: The data set LIBRARY.COUNTYOC1983 has 2022190 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 24.18 seconds cpu time 22.64 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.05 seconds NOTE: There were 2022190 observations read from the data set LIBRARY.COUNTYOC1983. NOTE: The data set WORK.SUM1983 has 3128 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 1.86 seconds cpu time 1.85 seconds NOTE: There were 3128 observations read from the data set WORK.SUM1983. NOTE: The data set LIBRARY.SUM1983 has 3128 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 3128 observations read from the data set LIBRARY.SUM1983. NOTE: The data set LIBRARY.SUM1983 has 3128 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 3128 observations read from the data set LIBRARY.SUM1983. NOTE: The PROCEDURE PRINT printed pages 449-504. NOTE: PROCEDURE PRINT used (Total process time): real time 0.03 seconds 11 The SAS System 13:51 Tuesday, December 11, 2007 cpu time 0.03 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1984/data/mort1984.zip " NOTE: 2042304 records were read from the infile DATAFILE. The minimum record length was 441. The maximum record length was 441. NOTE: The data set LIBRARY.COUNTYOC1984 has 2042304 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 22.95 seconds cpu time 21.42 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 2042304 observations read from the data set LIBRARY.COUNTYOC1984. NOTE: The data set WORK.SUM1984 has 3130 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 1.92 seconds cpu time 1.90 seconds NOTE: There were 3130 observations read from the data set WORK.SUM1984. NOTE: The data set LIBRARY.SUM1984 has 3130 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 3130 observations read from the data set LIBRARY.SUM1984. NOTE: The data set LIBRARY.SUM1984 has 3130 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.03 seconds cpu time 0.02 seconds NOTE: There were 3130 observations read from the data set LIBRARY.SUM1984. NOTE: The PROCEDURE PRINT printed pages 505-560. NOTE: PROCEDURE PRINT used (Total process time): real time 0.03 seconds cpu time 0.02 seconds 12 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1985/data/mort1985.zip " NOTE: 2089378 records were read from the infile DATAFILE. The minimum record length was 441. The maximum record length was 441. NOTE: The data set LIBRARY.COUNTYOC1985 has 2089378 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 23.47 seconds cpu time 21.97 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 2089378 observations read from the data set LIBRARY.COUNTYOC1985. NOTE: The data set WORK.SUM1985 has 3125 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 1.96 seconds cpu time 1.93 seconds NOTE: There were 3125 observations read from the data set WORK.SUM1985. NOTE: The data set LIBRARY.SUM1985 has 3125 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.05 seconds cpu time 0.01 seconds NOTE: There were 3125 observations read from the data set LIBRARY.SUM1985. NOTE: The data set LIBRARY.SUM1985 has 3125 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.02 seconds NOTE: There were 3125 observations read from the data set LIBRARY.SUM1985. NOTE: The PROCEDURE PRINT printed pages 561-616. NOTE: PROCEDURE PRINT used (Total process time): real time 0.03 seconds cpu time 0.02 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1986/data/mort1986.zip " NOTE: 2108384 records were read from the infile DATAFILE. 13 The SAS System 13:51 Tuesday, December 11, 2007 The minimum record length was 441. The maximum record length was 441. NOTE: The data set LIBRARY.COUNTYOC1986 has 2108384 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 24.47 seconds cpu time 22.88 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 2108384 observations read from the data set LIBRARY.COUNTYOC1986. NOTE: The data set WORK.SUM1986 has 3127 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 2.15 seconds cpu time 2.13 seconds NOTE: There were 3127 observations read from the data set WORK.SUM1986. NOTE: The data set LIBRARY.SUM1986 has 3127 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 3127 observations read from the data set LIBRARY.SUM1986. NOTE: The data set LIBRARY.SUM1986 has 3127 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 3127 observations read from the data set LIBRARY.SUM1986. NOTE: The PROCEDURE PRINT printed pages 617-672. NOTE: PROCEDURE PRINT used (Total process time): real time 0.03 seconds cpu time 0.03 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1987/data/mort1987.zip " NOTE: 2126342 records were read from the infile DATAFILE. The minimum record length was 441. The maximum record length was 441. NOTE: The data set LIBRARY.COUNTYOC1987 has 2126342 observations and 2 variables. NOTE: DATA statement used (Total process time): 14 The SAS System 13:51 Tuesday, December 11, 2007 real time 24.23 seconds cpu time 22.60 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 2126342 observations read from the data set LIBRARY.COUNTYOC1987. NOTE: The data set WORK.SUM1987 has 3130 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 2.16 seconds cpu time 2.14 seconds NOTE: There were 3130 observations read from the data set WORK.SUM1987. NOTE: The data set LIBRARY.SUM1987 has 3130 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 3130 observations read from the data set LIBRARY.SUM1987. NOTE: The data set LIBRARY.SUM1987 has 3130 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 3130 observations read from the data set LIBRARY.SUM1987. NOTE: The PROCEDURE PRINT printed pages 673-728. NOTE: PROCEDURE PRINT used (Total process time): real time 0.03 seconds cpu time 0.03 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1988/data/mort1988.zip " NOTE: 2171196 records were read from the infile DATAFILE. The minimum record length was 441. The maximum record length was 441. NOTE: The data set LIBRARY.COUNTYOC1988 has 2171196 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 24.73 seconds cpu time 23.05 seconds 15 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 2171196 observations read from the data set LIBRARY.COUNTYOC1988. NOTE: The data set WORK.SUM1988 has 3130 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 2.22 seconds cpu time 2.20 seconds NOTE: There were 3130 observations read from the data set WORK.SUM1988. NOTE: The data set LIBRARY.SUM1988 has 3130 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 3130 observations read from the data set LIBRARY.SUM1988. NOTE: The data set LIBRARY.SUM1988 has 3130 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 3130 observations read from the data set LIBRARY.SUM1988. NOTE: The PROCEDURE PRINT printed pages 729-784. NOTE: PROCEDURE PRINT used (Total process time): real time 0.03 seconds cpu time 0.03 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1989/data/mort1989.zip " NOTE: 2153859 records were read from the infile DATAFILE. The minimum record length was 441. The maximum record length was 441. NOTE: The data set LIBRARY.COUNTYOC1989 has 2153859 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 24.56 seconds cpu time 22.85 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. 16 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.05 seconds NOTE: There were 2153859 observations read from the data set LIBRARY.COUNTYOC1989. NOTE: The data set WORK.SUM1989 has 460 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 1.49 seconds cpu time 1.47 seconds NOTE: There were 460 observations read from the data set WORK.SUM1989. NOTE: The data set LIBRARY.SUM1989 has 460 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 460 observations read from the data set LIBRARY.SUM1989. NOTE: The data set LIBRARY.SUM1989 has 460 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 460 observations read from the data set LIBRARY.SUM1989. NOTE: The PROCEDURE PRINT printed pages 785-793. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1990/data/mort1990.zip " NOTE: 2151890 records were read from the infile DATAFILE. The minimum record length was 441. The maximum record length was 441. NOTE: The data set LIBRARY.COUNTYOC1990 has 2151890 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 27.04 seconds cpu time 22.91 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds 17 The SAS System 13:51 Tuesday, December 11, 2007 cpu time 0.04 seconds NOTE: There were 2151890 observations read from the data set LIBRARY.COUNTYOC1990. NOTE: The data set WORK.SUM1990 has 460 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 3.94 seconds cpu time 1.49 seconds NOTE: There were 460 observations read from the data set WORK.SUM1990. NOTE: The data set LIBRARY.SUM1990 has 460 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 460 observations read from the data set LIBRARY.SUM1990. NOTE: The data set LIBRARY.SUM1990 has 460 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 460 observations read from the data set LIBRARY.SUM1990. NOTE: The PROCEDURE PRINT printed pages 794-802. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1991/data/mort1991.zip " NOTE: 2173060 records were read from the infile DATAFILE. The minimum record length was 373. The maximum record length was 373. NOTE: The data set LIBRARY.COUNTYOC1991 has 2173060 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 30.08 seconds cpu time 22.92 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.05 seconds NOTE: There were 2173060 observations read from the data set LIBRARY.COUNTYOC1991. 18 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: The data set WORK.SUM1991 has 460 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 2.31 seconds cpu time 1.52 seconds NOTE: There were 460 observations read from the data set WORK.SUM1991. NOTE: The data set LIBRARY.SUM1991 has 460 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 460 observations read from the data set LIBRARY.SUM1991. NOTE: The data set LIBRARY.SUM1991 has 460 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 460 observations read from the data set LIBRARY.SUM1991. NOTE: The PROCEDURE PRINT printed pages 803-811. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1992/data/mort1992.zip " NOTE: 2179187 records were read from the infile DATAFILE. The minimum record length was 367. The maximum record length was 367. NOTE: The data set LIBRARY.COUNTYOC1992 has 2179187 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 25.49 seconds cpu time 21.29 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: There were 2179187 observations read from the data set LIBRARY.COUNTYOC1992. NOTE: The data set WORK.SUM1992 has 460 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 2.72 seconds cpu time 1.51 seconds 19 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: There were 460 observations read from the data set WORK.SUM1992. NOTE: The data set LIBRARY.SUM1992 has 460 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 460 observations read from the data set LIBRARY.SUM1992. NOTE: The data set LIBRARY.SUM1992 has 460 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 460 observations read from the data set LIBRARY.SUM1992. NOTE: The PROCEDURE PRINT printed pages 812-820. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1993/data/mort1993.zip " NOTE: 2271947 records were read from the infile DATAFILE. The minimum record length was 360. The maximum record length was 360. NOTE: The data set LIBRARY.COUNTYOC1993 has 2271947 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 26.37 seconds cpu time 21.27 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 2271947 observations read from the data set LIBRARY.COUNTYOC1993. NOTE: The data set WORK.SUM1993 has 460 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 2.92 seconds cpu time 1.55 seconds NOTE: There were 460 observations read from the data set WORK.SUM1993. 20 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: The data set LIBRARY.SUM1993 has 460 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 460 observations read from the data set LIBRARY.SUM1993. NOTE: The data set LIBRARY.SUM1993 has 460 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 460 observations read from the data set LIBRARY.SUM1993. NOTE: The PROCEDURE PRINT printed pages 821-829. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.02 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1994/data/mort1994.zip " NOTE: 2282288 records were read from the infile DATAFILE. The minimum record length was 360. The maximum record length was 360. NOTE: The data set LIBRARY.COUNTYOC1994 has 2282288 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 25.71 seconds cpu time 21.91 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 2282288 observations read from the data set LIBRARY.COUNTYOC1994. NOTE: The data set WORK.SUM1994 has 502 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 2.02 seconds cpu time 1.63 seconds NOTE: There were 502 observations read from the data set WORK.SUM1994. NOTE: The data set LIBRARY.SUM1994 has 502 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 21 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: There were 502 observations read from the data set LIBRARY.SUM1994. NOTE: The data set LIBRARY.SUM1994 has 502 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 502 observations read from the data set LIBRARY.SUM1994. NOTE: The PROCEDURE PRINT printed pages 830-838. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1995/data/mort1995.zip " NOTE: 2315251 records were read from the infile DATAFILE. The minimum record length was 362. The maximum record length was 362. NOTE: The data set LIBRARY.COUNTYOC1995 has 2315251 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 24.61 seconds cpu time 22.30 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 2315251 observations read from the data set LIBRARY.COUNTYOC1995. NOTE: The data set WORK.SUM1995 has 502 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 2.00 seconds cpu time 1.66 seconds NOTE: There were 502 observations read from the data set WORK.SUM1995. NOTE: The data set LIBRARY.SUM1995 has 502 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.02 seconds NOTE: There were 502 observations read from the data set LIBRARY.SUM1995. NOTE: The data set LIBRARY.SUM1995 has 502 observations and 3 variables. 22 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: PROCEDURE SORT used (Total process time): real time 0.04 seconds cpu time 0.00 seconds NOTE: There were 502 observations read from the data set LIBRARY.SUM1995. NOTE: The PROCEDURE PRINT printed pages 839-847. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1996/data/mort1996.zip " NOTE: 2318212 records were read from the infile DATAFILE. The minimum record length was 441. The maximum record length was 441. NOTE: The data set LIBRARY.COUNTYOC1996 has 2318212 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 26.41 seconds cpu time 24.40 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 2318212 observations read from the data set LIBRARY.COUNTYOC1996. NOTE: The data set WORK.SUM1996 has 502 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 2.09 seconds cpu time 1.67 seconds NOTE: There were 502 observations read from the data set WORK.SUM1996. NOTE: The data set LIBRARY.SUM1996 has 502 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.04 seconds cpu time 0.00 seconds NOTE: There were 502 observations read from the data set LIBRARY.SUM1996. NOTE: The data set LIBRARY.SUM1996 has 502 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.05 seconds cpu time 0.01 seconds 23 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: There were 502 observations read from the data set LIBRARY.SUM1996. NOTE: The PROCEDURE PRINT printed pages 848-856. NOTE: PROCEDURE PRINT used (Total process time): real time 0.02 seconds cpu time 0.02 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1997/data/mort1997.zip " NOTE: 2317586 records were read from the infile DATAFILE. The minimum record length was 441. The maximum record length was 441. NOTE: The data set LIBRARY.COUNTYOC1997 has 2317586 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 27.20 seconds cpu time 24.56 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 2317586 observations read from the data set LIBRARY.COUNTYOC1997. NOTE: The data set WORK.SUM1997 has 502 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 2.07 seconds cpu time 1.65 seconds NOTE: There were 502 observations read from the data set WORK.SUM1997. NOTE: The data set LIBRARY.SUM1997 has 502 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 502 observations read from the data set LIBRARY.SUM1997. NOTE: The data set LIBRARY.SUM1997 has 502 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 502 observations read from the data set LIBRARY.SUM1997. NOTE: The PROCEDURE PRINT printed pages 857-865. 24 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.02 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1998/data/mort1998.zip " NOTE: 2340708 records were read from the infile DATAFILE. The minimum record length was 441. The maximum record length was 441. NOTE: The data set LIBRARY.COUNTYOC1998 has 2340708 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 27.23 seconds cpu time 25.23 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 2340708 observations read from the data set LIBRARY.COUNTYOC1998. NOTE: The data set WORK.SUM1998 has 502 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 1.87 seconds cpu time 1.67 seconds NOTE: There were 502 observations read from the data set WORK.SUM1998. NOTE: The data set LIBRARY.SUM1998 has 502 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 502 observations read from the data set LIBRARY.SUM1998. NOTE: The data set LIBRARY.SUM1998 has 502 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 502 observations read from the data set LIBRARY.SUM1998. NOTE: The PROCEDURE PRINT printed pages 866-874. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 25 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/1999/data/mort1999.zip " NOTE: 2394871 records were read from the infile DATAFILE. The minimum record length was 441. The maximum record length was 441. NOTE: The data set LIBRARY.COUNTYOC1999 has 2394871 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 27.80 seconds cpu time 25.60 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 2394871 observations read from the data set LIBRARY.COUNTYOC1999. NOTE: The data set WORK.SUM1999 has 502 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 1.92 seconds cpu time 1.68 seconds NOTE: There were 502 observations read from the data set WORK.SUM1999. NOTE: The data set LIBRARY.SUM1999 has 502 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 502 observations read from the data set LIBRARY.SUM1999. NOTE: The data set LIBRARY.SUM1999 has 502 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 502 observations read from the data set LIBRARY.SUM1999. NOTE: The PROCEDURE PRINT printed pages 875-883. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/2000/data/mort2000.zip " 26 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: 2407193 records were read from the infile DATAFILE. The minimum record length was 441. The maximum record length was 441. NOTE: The data set LIBRARY.COUNTYOC2000 has 2407193 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 27.31 seconds cpu time 25.35 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.03 seconds NOTE: There were 2407193 observations read from the data set LIBRARY.COUNTYOC2000. NOTE: The data set WORK.SUM2000 has 502 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 1.79 seconds cpu time 1.67 seconds NOTE: There were 502 observations read from the data set WORK.SUM2000. NOTE: The data set LIBRARY.SUM2000 has 502 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 502 observations read from the data set LIBRARY.SUM2000. NOTE: The data set LIBRARY.SUM2000 has 502 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 502 observations read from the data set LIBRARY.SUM2000. NOTE: The PROCEDURE PRINT printed pages 884-892. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/2001/data/mort2001.zip " NOTE: 2419960 records were read from the infile DATAFILE. The minimum record length was 441. The maximum record length was 441. 27 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: The data set LIBRARY.COUNTYOC2001 has 2419960 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 28.68 seconds cpu time 26.29 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 2419960 observations read from the data set LIBRARY.COUNTYOC2001. NOTE: The data set WORK.SUM2001 has 502 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 1.78 seconds cpu time 1.66 seconds NOTE: There were 502 observations read from the data set WORK.SUM2001. NOTE: The data set LIBRARY.SUM2001 has 502 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 502 observations read from the data set LIBRARY.SUM2001. NOTE: The data set LIBRARY.SUM2001 has 502 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 502 observations read from the data set LIBRARY.SUM2001. NOTE: The PROCEDURE PRINT printed pages 893-901. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/2002/data/mort2002.zip " NOTE: 2446796 records were read from the infile DATAFILE. The minimum record length was 441. The maximum record length was 441. NOTE: The data set LIBRARY.COUNTYOC2002 has 2446796 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 28.40 seconds cpu time 26.10 seconds 28 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.05 seconds cpu time 0.05 seconds NOTE: There were 2446796 observations read from the data set LIBRARY.COUNTYOC2002. NOTE: The data set WORK.SUM2002 has 502 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 1.75 seconds cpu time 1.73 seconds NOTE: There were 502 observations read from the data set WORK.SUM2002. NOTE: The data set LIBRARY.SUM2002 has 502 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 502 observations read from the data set LIBRARY.SUM2002. NOTE: The data set LIBRARY.SUM2002 has 502 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 502 observations read from the data set LIBRARY.SUM2002. NOTE: The PROCEDURE PRINT printed pages 902-910. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/2003/data/mort2003.zip " NOTE: Invalid data for stateoc in line 1 21-22. RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0 1 11AK999AK9AK AK9999999992AK00009900OR OR14 001 F1079 412110 4W4 101 2003U7UN I361226 068 22 0711I500 21I361 31I10 61I679 62I739 6 201 3M199 64N289 301 07 I10 I361 I500 I679 I739 M199 N289 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=AK999 _ERROR_=1 _N_=1 29 The SAS System 13:51 Tuesday, December 11, 2007 NOTE: Invalid data for stateoc in line 2 21-22. RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0 2 11AK999AK9AK AK9999999992AK00009900NY NY17 001 F1088 432311 1W6 101 2003U7UN I499228 068 22 0311R568 21I959 31I499 201 301 03 I499 I959 R568 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=AK999 _ERROR_=1 _N_=2 NOTE: Invalid data for stateoc in line 3 21-22. 3 11AK999AK9AK AK9999999992AK00009900WA WA15 001 F1059 371708 6D7 101 2003U7UN C64 117 034 12 0111C64 201 301 01 C64 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=AK999 _ERROR_=1 _N_=3 NOTE: Invalid data for stateoc in line 4 21-22. 4 11AK999AK9AK AK9999999992AK00009900TX TX16 001 F1084 422210 4W7 101 2003U7UN C349093 027 08 0111C349 201 301 01 C349 401 03 23 100 8. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000003002300000000000000000000000000000000010008D stateoc=. countyoc=AK999 _ERROR_=1 _N_=4 NOTE: Invalid data for stateoc in line 5 21-22. 5 11AK999AK9AK AK9999999992AK00009900AK AK12 001 M1039 331306 4S1 101 2003U7UN C97 125 043 15 0311C80 21C050 22C140 201 301 02 C050 C140 401 03 23 100 8. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000003002300000000000000000000000000000000010008D stateoc=. countyoc=AK999 _ERROR_=1 _N_=5 NOTE: Invalid data for stateoc in line 6 21-22. 6 11AK999AK9AK AK9999999992AK00009900AK AK12 001 M1082 422210 4M6 101 2003N2UN 90X74 429 125 40 0311S019 12X74 61T141 201 301 03 S019 T141 X74 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=AK999 _ERROR_=1 _N_=6 NOTE: Invalid data for stateoc in line 7 21-22. 7 11AK999AK9AK AK9999999992AK00009900AK AK16 001 M1086 432311 1M4 101 2003U7UN M313313 111 37 0411J969 21A419 31N390 41M313 201 301 04 A419 J969 M313 N390 30 The SAS System 13:51 Tuesday, December 11, 2007 RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=AK999 _ERROR_=1 _N_=7 NOTE: Invalid data for stateoc in line 8 21-22. 8 11AK999AK9AK AK9999999992AK00009900ID ID09 001 M1072 402009 4M4 101 2003U7UN I350225 068 22 0411I472 21I350 61J449 62I48 201 301 04 I350 I472 I48 J449 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=AK999 _ERROR_=1 _N_=8 NOTE: Invalid data for stateoc in line 9 21-22. 9 11AK999AK9AK AK9999999992AK00009900AK AK00 001 M2004 150201152S1 101 2003N5UY R95 378 11013535 0211R95 61R95 201 301 01 R95 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=AK999 _ERROR_=1 _N_=9 NOTE: Invalid data for stateoc in line 10 21-22. 10 11AK020AK2AK AK0200300021AK03802100MI MI12 001 F1075 412110 4M3 101 2003U7UN I119207 056 20 0111I119 201 301 01 I119 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=AK020 _ERROR_=1 _N_=10 NOTE: Invalid data for stateoc in line 11 21-22. 11 11AK020AK2AK AK0200300021AK03802100AK AK12 001 F1062 381808 1M4 101 2003U7UN N390330 111 37 0111N390 201 301 01 N390 401 03 23 100 8. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000003002300000000000000000000000000000000010008D stateoc=. countyoc=AK020 _ERROR_=1 _N_=11 NOTE: Invalid data for stateoc in line 12 21-22. 12 11AK020AK2AK AK0200300021AK03802100OH OH12 001 F1079 412110 1W3 101 2003U7UN C64 117 034 12 0311C64 21N19 61I48 201 301 03 C64 I48 N19 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=AK020 _ERROR_=1 _N_=12 NOTE: Invalid data for stateoc in line 13 21-22. 13 11AK020AK2AK AK0200300021AK03802100CA CA15 001 F1058 371708 1M6 31 The SAS System 13:51 Tuesday, December 11, 2007 RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0 101 2003U7UN C349093 027 08 0411C80 21C349 31N289 41E119 201 301 02 C349 E112 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=AK020 _ERROR_=1 _N_=13 NOTE: Invalid data for stateoc in line 14 21-22. 14 11AK020AK2AK AK0200300021AK03802100AK AK00 001 F2002 130201132S2 101 2003N1UY R95 378 11013535 0111R95 201 301 01 R95 401 07 24 211 1. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000007002400000000000000000000000000000000021101D stateoc=. countyoc=AK020 _ERROR_=1 _N_=14 NOTE: Invalid data for stateoc in line 15 21-22. 15 11AK020AK2AK AK0200300021AK03802100HI HI12 001 F1022 301004 7S6 101 2003N1UN 9 V877397 114 38 0211T149 12V877 201 301 02 T149 V877 401 68 24 211 1. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000068002400000000000000000000000000000000021101D stateoc=. countyoc=AK020 _ERROR_=1 _N_=15 NOTE: Invalid data for stateoc in line 16 21-22. 16 11AK020AK2AK AK0200300021AK03802100CO CO06 001 M1081 422210 4W7 101 2003U7UN C97 125 043 15 0211C20 21C609 201 301 02 C20 C609 401 01 11 211 1. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000021101D stateoc=. countyoc=AK020 _ERROR_=1 _N_=16 NOTE: Invalid data for stateoc in line 17 21-22. 17 11AK020AK2AK AK0200300021AK03802100IL IL14 001 M1041 341406 2M4 101 2003U7UN E149159 046 16 0311I499 21N19 31E149 201 301 03 E149 I499 N19 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=AK020 _ERROR_=1 _N_=17 NOTE: Invalid data for stateoc in line 18 21-22. 18 11AK020AK2AK AK0200300021AK03802100NE NE12 001 F1072 402009 4W4 101 2003U7UN F03 175 111 37 0211F03 61M819 201 301 02 F03 M819 32 The SAS System 13:51 Tuesday, December 11, 2007 RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=AK020 _ERROR_=1 _N_=18 NOTE: Invalid data for stateoc in line 19 21-22. 19 11AK020AK2AK AK0200300021AK03802100CO CO09 001 M1040 341406 6M1 101 2003U7UN C109074 020 15 0111C109 201 301 01 C109 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=AK020 _ERROR_=1 _N_=19 NOTE: Invalid data for stateoc in line 20 21-22. ERROR: Limit set by ERRORS= option reached. Further errors of this type will not be printed. 20 11AK020AK2AK AK0200300021AK03802100WI WI12 001 F1089 432311 1W4 101 2003U7UN C189081 023 06 0111C189 201 301 01 C189 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=AK020 _ERROR_=1 _N_=20 NOTE: 2452154 records were read from the infile DATAFILE. The minimum record length was 489. The maximum record length was 489. NOTE: The data set LIBRARY.COUNTYOC2003 has 2452154 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 28.44 seconds cpu time 26.27 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.05 seconds NOTE: There were 2452154 observations read from the data set LIBRARY.COUNTYOC2003. NOTE: The data set WORK.SUM2003 has 572 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 1.85 seconds cpu time 1.83 seconds NOTE: There were 572 observations read from the data set WORK.SUM2003. NOTE: The data set LIBRARY.SUM2003 has 572 observations and 3 variables. NOTE: DATA statement used (Total process time): 33 The SAS System 13:51 Tuesday, December 11, 2007 real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 572 observations read from the data set LIBRARY.SUM2003. NOTE: The data set LIBRARY.SUM2003 has 572 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 572 observations read from the data set LIBRARY.SUM2003. NOTE: The PROCEDURE PRINT printed pages 911-921. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/mortality/2004/data/mort2004.zip " NOTE: Invalid data for stateoc in line 1 21-22. RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0 1 11CA001CA0CA CA0010600031CA57750184OK OK 7101 F1088 432311 4W6 101 2004U UN I64 238 070 24 0311I64 21I10 61J189 201 301 03 I10 I64 J189 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=CA001 _ERROR_=1 _N_=1 NOTE: Invalid data for stateoc in line 2 21-22. 2 11CA001CA0CA CA0015300021CA57750184NJ NJ 7101 F1059 371708 1D5 101 2004U UN G122194 111 37 0311J969 21J690 31G122 201 301 03 G122 J690 J969 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=CA001 _ERROR_=1 _N_=2 NOTE: Invalid data for stateoc in line 3 21-22. 3 22CA001CA0CA CA0139999991CA57751184FL FL 4101 F1059 371708 1S2 101 2004U UN C439098 028 15 0111C439 201 301 01 C439 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=CA001 _ERROR_=1 _N_=3 NOTE: Invalid data for stateoc in line 4 21-22. 4 11CA001CA0CA CA0019999991CA57750184NY NY 8101 M1040 341406 2S2 101 2004U UN B200049 016 03 0311B24 61A310 62K729 201 34 The SAS System 13:51 Tuesday, December 11, 2007 RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0 301 02 B200 K729 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=CA001 _ERROR_=1 _N_=4 NOTE: Invalid data for stateoc in line 5 21-22. 5 11CA001CA0CA CA0010600031CA57750184DC DC 8101 F1058 371708 2S6 101 2004U UY I219211 059 21 0311I219 21I250 61J459 201 301 03 I219 I250 J459 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=CA001 _ERROR_=1 _N_=5 NOTE: Invalid data for stateoc in line 6 21-22. 6 11CA001CA0CA CA0019999991CA57750184CA CA 1101 M1093 442411 6W3 101 2004U UN I219211 059 21 0311I219 21I251 61N19 201 301 03 I219 I251 N19 401 01 11 210 1. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000021001D stateoc=. countyoc=CA001 _ERROR_=1 _N_=6 NOTE: Invalid data for stateoc in line 7 21-22. 7 11CA001CA0CA CA0015300021CA57750184CA CA 6101 F1076 412110 1W7 101 2004U UN C73 124 043 15 0211I469 21C73 201 301 02 C73 I469 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=CA001 _ERROR_=1 _N_=7 NOTE: Invalid data for stateoc in line 8 21-22. 8 11CA001CA0CA CA0010600031CA57750184OR OR 3101 M1082 422210 1M2 101 2004U UN C900132 041 15 0211A419 21C900 201 301 02 A419 C900 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=CA001 _ERROR_=1 _N_=8 NOTE: Invalid data for stateoc in line 9 21-22. 9 11CA001CA0CA CA0010600031CA57750184MA MA 5101 M1042 341406 2D5 101 2004N1UY 90W19 406 118 39 0311S065 21S099 22W19 201 301 03 S065 S099 W19 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=CA001 _ERROR_=1 _N_=9 NOTE: Invalid data for stateoc in line 10 21-22. 35 The SAS System 13:51 Tuesday, December 11, 2007 RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0 10 11CA001CA0CA CA0010600031CA57750184ZZ YY 8101 M1078 412110 1M4 101 2004U UN C97 125 043 15 0311I629 21C61 31C900 201 301 03 C61 C900 I629 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=CA001 _ERROR_=1 _N_=10 NOTE: Invalid data for stateoc in line 11 21-22. 11 22CA001CA0CA CA0139999991CA57751184CA CA 4101 F1095 452511 3W1 101 2004U UN I219211 059 21 0211I469 21I219 201 301 02 I219 I469 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=CA001 _ERROR_=1 _N_=11 NOTE: Invalid data for stateoc in line 12 21-22. 12 11CA001CA0CA CA0010600031CA57750184CA CA 2101 F1054 361607 1D4 101 2004U UN B219050 016 03 0211C80 61B24 201 301 01 B219 401 02 32 100 7. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000002003200000000000000000000000000000000010007D stateoc=. countyoc=CA001 _ERROR_=1 _N_=12 NOTE: Invalid data for stateoc in line 13 21-22. 13 11CA001CA0CA CA0010600031CA57750184CA CA 5101 F1046 351507 2S7 101 2004U7UY J180257 078 27 0311A419 21J869 41J180 201 301 03 A419 J180 J869 401 02 32 100 7. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000002003200000000000000000000000000000000010007D stateoc=. countyoc=CA001 _ERROR_=1 _N_=13 NOTE: Invalid data for stateoc in line 14 21-22. 14 11CA001CA0CA CA0010600031CA57750184CA CA 4101 F1090 442411 4W6 101 2004U UN I250214 062 21 0511I469 21I250 61F03 62I48 63I500 201 301 05 F03 I250 I469 I48 I500 401 01 11 100 6. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000010006D stateoc=. countyoc=CA001 _ERROR_=1 _N_=14 NOTE: Invalid data for stateoc in line 15 21-22. 15 11CA001CA0CA CA0015300021CA57750184OK OK 4101 F1067 391909 1D6 101 2004U UN C55 108 031 10 0211A419 21C55 201 301 02 A419 C55 36 The SAS System 13:51 Tuesday, December 11, 2007 RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0 401 02 32 100 7. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000002003200000000000000000000000000000000010007D stateoc=. countyoc=CA001 _ERROR_=1 _N_=15 NOTE: Invalid data for stateoc in line 16 21-22. 16 11CA001CA0CA CA0019999991CA57750184CA CA 1101 M4012 090101091S7 101 2004U UN P364363 10810633 0311P285 21P072 31P364 201 301 02 P285 P364 401 02 32 210 1. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000002003200000000000000000000000000000000021001D stateoc=. countyoc=CA001 _ERROR_=1 _N_=16 NOTE: Invalid data for stateoc in line 17 21-22. 17 11CA001CA0CA CA0010600031CA57750184HI HI 3101 F1094 442411 4W2 101 2004U UN G309189 052 17 0311J969 21J690 31G309 201 301 03 G309 J690 J969 401 781 24 100 8. 489 ZONE 22222222222222222222222222222222222222222222333233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000078102400000000000000000000000000000000010008D stateoc=. countyoc=CA001 _ERROR_=1 _N_=17 NOTE: Invalid data for stateoc in line 18 21-22. 18 11CA001CA0CA CA0015300021CA57750184ZZ YY 1101 M1085 432311 1M5 101 2004U UN J449267 086 28 0311J969 21J449 31F171 201 301 03 F171 J449 J969 401 04 24 100 8. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000004002400000000000000000000000000000000010008D stateoc=. countyoc=CA001 _ERROR_=1 _N_=18 NOTE: Invalid data for stateoc in line 19 21-22. 19 22CA001CA0CA CA0139999991CA57751184AZ AZ 7101 M1066 391909 2W2 101 2004U UN I319222 066 22 0311I469 21I319 61C80 201 301 03 C80 I319 I469 401 01 11 210 1. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000021001D stateoc=. countyoc=CA001 _ERROR_=1 _N_=19 NOTE: Invalid data for stateoc in line 20 21-22. ERROR: Limit set by ERRORS= option reached. Further errors of this type will not be printed. 20 11CA001CA0CA CA0015300021CA57750184ZZ YY 7101 M1095 452511 6S4 101 2004U UN I132209 057 20 0511I509 21I519 31I10 61F03 62N19 201 301 04 F03 I10 I509 N19 401 01 11 270 3. 489 ZONE 22222222222222222222222222222222222222222222332233222222222222222222222222222222222333230 NUMR 0000000000000000000000000000000000000000000001001100000000000000000000000000000000027003D stateoc=. countyoc=CA001 _ERROR_=1 _N_=20 NOTE: 2401400 records were read from the infile DATAFILE. 37 The SAS System 13:51 Tuesday, December 11, 2007 The minimum record length was 489. The maximum record length was 489. NOTE: The data set LIBRARY.COUNTYOC2004 has 2401400 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 27.63 seconds cpu time 25.68 seconds NOTE: Format YEARV is already on the library. NOTE: Format YEARV has been output. NOTE: Format $COUN82V is already on the library. NOTE: Format $COUN82V has been output. NOTE: There were 3186 observations read from the data set LIBRARY.FCOUNTY. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: There were 2401400 observations read from the data set LIBRARY.COUNTYOC2004. NOTE: The data set WORK.SUM2004 has 572 observations and 2 variables. NOTE: PROCEDURE FREQ used (Total process time): real time 1.79 seconds cpu time 1.77 seconds NOTE: There were 572 observations read from the data set WORK.SUM2004. NOTE: The data set LIBRARY.SUM2004 has 572 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 572 observations read from the data set LIBRARY.SUM2004. NOTE: The data set LIBRARY.SUM2004 has 572 observations and 3 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 62 63 /* 64 Copyright 2006 shared by the National Bureau of Economic Research and Jean Roth 65 66 National Bureau of Economic Research. 67 1050 Massachusetts Avenue 68 Cambridge, MA 02138 69 jroth@nber.org 70 71 This program and all programs referenced in it are free software. You 72 can redistribute the program or modify it under the terms of the GNU 73 General Public License as published by the Free Software Foundation; 74 either version 2 of the License, or (at your option) any later version. 75 76 This program is distributed in the hope that it will be useful, 77 but WITHOUT ANY WARRANTY; without even the implied warranty of 78 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 38 The SAS System 13:51 Tuesday, December 11, 2007 79 GNU General Public License for more details. 80 81 You should have received a copy of the GNU General Public License 82 along with this program; if not, write to the Free Software 83 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 84 USA. 85 */ NOTE: There were 572 observations read from the data set LIBRARY.SUM2004. NOTE: The PROCEDURE PRINT printed pages 922-932. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds ERROR: Errors printed on pages 32,36. NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 13:20.99 cpu time 12:04.58