1 The SAS System 17:30 Thursday, March 15, 2001 NOTE: Copyright (c) 1989-1996 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software Release 6.12 TS020 Licensed to HARVARD SCHOOL OF PUBLIC HEALTH-INSTRUCTIONAL COMP, Site 0001177014. The SAS system will continue to complain about the coming license expiration for several weeks. Don't be concerned till September 13th, at least. drf NOTE: AUTOEXEC processing beginning; file is /usr/sunos/local/sas612/autoexec.sas. NOTE: SAS initialization used: real time 0.170 seconds cpu time 0.044 seconds NOTE: AUTOEXEC processing completed. 1 /* 2 * \\Nber\home\data\mortality\1991\data\Pop91.sas: NCHS SETS output for SAS 3 * Export from Set D:\NCHS\Mort1991.set 4 * Mon Nov 13 13:28:03 2000 5 */ 6 /* 7 * On output, fields will undergo the following translation: 8 * Original name Translated name 9 * ------------- -------------- 10 * FIPSSTR FIPSSTR 11 * BLANK BLANK_1 12 * AGER20 AGER20 13 * BLANK BLANK_2 14 * SEX SEX 15 * BLANK BLANK_3 16 * HISPANR HISPANR 17 * BLANK BLANK_4 18 * RACER5 RACER5 19 * BLANK BLANK_5 20 * POP1 POP1 21 * BLANK BLANK_6 22 * POP2 POP2 23 */ 24 OPTIONS COMPRESS='YES'; 25 DATA IN; 26 LENGTH 27 BLANK_5 28 POP1 29 POP2 30 8 31 DEFAULT=3; 32 INFILE '/home/data/mortality/1991/data/Pop91.dat' LRECL=36 PAD END=EOF; 33 INPUT 34 /* Source file: POP.DAT */ 35 @1 FIPSSTR 2. 36 @3 BLANK_1 $1. 37 @4 AGER20 2. 38 @6 BLANK_2 $1. 39 @7 SEX 1. 40 @8 BLANK_3 $1. 41 @9 HISPANR $1. 42 @10 BLANK_4 $1. 43 @11 RACER5 $1. 44 @12 BLANK_5 $7. 45 @19 POP1 $8. WARNING: Variable BLANK_5 has already been defined as numeric. 46 @27 BLANK_6 $1. WARNING: Variable POP1 has already been defined as numeric. 47 @28 POP2 $8. 48 ; WARNING: Variable POP2 has already been defined as numeric. 49 LABEL 50 FIPSSTR='FIPS State of Residence' 2 The SAS System 17:30 Thursday, March 15, 2001 51 BLANK_1='Undefined Field' 52 AGER20='Age Recode 20' 53 BLANK_2='Undefined Field' 54 SEX='Sex' 55 BLANK_3='Undefined Field' 56 HISPANR='Hispanic Origin Recode' 57 BLANK_4='Undefined Field' 58 RACER5='Race Recode 5' 59 BLANK_5='Undefined Field' 60 POP1='FIPS State of Residence/Age Recode 2...' /*0/Sex/Hispanic Recode*/ 61 BLANK_6='Undefined Field' 62 POP2='FIPS State of Residence/Age Recode 2...' /*0/Sex/Race Recode 5*/ 63 ; NOTE: The infile '/home/data/mortality/1991/data/Pop91.dat' is: File Name=/home/data/mortality/1991/data/Pop91.dat, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw----, File Size (bytes)=3700 NOTE: 100 records were read from the infile '/home/data/mortality/1991/data/Pop91.dat'. The minimum record length was 36. The maximum record length was 36. NOTE: The data set WORK.IN has 100 observations and 13 variables. NOTE: Compressing data set WORK.IN decreased size by 0.00 percent. Compressed is 1 pages; un-compressed would require 1 pages. NOTE: DATA statement used: real time 0.160 seconds cpu time 0.020 seconds 64 proc print data=in (obs=100); NOTE: Access by observation number not available. Observation numbers will be counted by PROC PRINT. NOTE: The PROCEDURE PRINT printed pages 1-2. NOTE: PROCEDURE PRINT used: real time 0.010 seconds cpu time 0.007 seconds 65 PROC CONTENTS DATA=IN; NOTE: The PROCEDURE CONTENTS printed page 3. NOTE: PROCEDURE CONTENTS used: real time 0.300 seconds cpu time 0.016 seconds NOTE: The SAS System used: real time 0.720 seconds cpu time 0.092 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414