1 The SAS System 11:42 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.130 seconds cpu time 0.052 seconds NOTE: AUTOEXEC processing completed. 1 /* 2 * \\Nber\home\data\mortality\1992\data\Pop92.sas: NCHS SETS output for SAS 3 * Export from Set D:\NCHS\Mort1992.set 4 * Mon Nov 13 13:29:29 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 * RACER4 RACER4 19 * BLANK BLANK_5 20 * POP1 POP1 21 */ 22 OPTIONS COMPRESS='YES'; 23 DATA IN; 24 LENGTH 25 POP1 26 8 27 DEFAULT=3; 28 INFILE '/home/data/mortality/1992/data/Pop92.dat' LRECL=21 PAD END=EOF; 29 INPUT 30 /* Source file: POP.DAT */ 31 @1 FIPSSTR 2. 32 @3 BLANK_1 $1. 33 @4 AGER20 2. 34 @6 BLANK_2 $1. 35 @7 SEX 1. 36 @8 BLANK_3 $1. 37 @9 HISPANR 1. 38 @10 BLANK_4 $1. 39 @11 RACER4 1. 40 @12 BLANK_5 $1. 41 @13 POP1 $8. 42 ; WARNING: Variable POP1 has already been defined as numeric. 43 LABEL 44 FIPSSTR='FIPS State of Residence' 45 BLANK_1='Undefined Field' 46 AGER20='Age Recode 20' 47 BLANK_2='Undefined Field' 48 SEX='Sex' 49 BLANK_3='Undefined Field' 50 HISPANR='Hispanic Origin Recode' 51 BLANK_4='Undefined Field' 52 RACER4='Race Recode 4' 2 The SAS System 11:42 Thursday, March 15, 2001 53 BLANK_5='Undefined Field' 54 POP1='FIPS State/AgeRecode 20/Sex/Hispanic...' /*/Race*/ 55 ; NOTE: The infile '/home/data/mortality/1992/data/Pop92.dat' is: File Name=/home/data/mortality/1992/data/Pop92.dat, Owner Name=jroth,Group Name=aging, Access Permission=rw-rw----, File Size (bytes)=2200 NOTE: 100 records were read from the infile '/home/data/mortality/1992/data/Pop92.dat'. The minimum record length was 21. The maximum record length was 21. NOTE: The data set WORK.IN has 100 observations and 11 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.018 seconds 56 proc print data=in (obs=6); NOTE: Access by observation number not available. Observation numbers will be counted by PROC PRINT. NOTE: The PROCEDURE PRINT printed page 1. NOTE: PROCEDURE PRINT used: real time 0.010 seconds cpu time 0.004 seconds 57 PROC CONTENTS DATA=IN; NOTE: The PROCEDURE CONTENTS printed page 2. NOTE: PROCEDURE CONTENTS used: real time 0.050 seconds cpu time 0.008 seconds NOTE: The SAS System used: real time 0.380 seconds cpu time 0.088 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414