1 The SAS System 11:56 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.033 seconds NOTE: AUTOEXEC processing completed. 1 /* 2 * \\Nber\home\data\mortality\1994\data\Pop94.sas: NCHS SETS output for SAS 3 * Export from Set D:\nchs\Mort1994.set 4 * Mon Nov 13 13:32:05 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 INFILE '/home/data/mortality/1994/data/Pop94.dat' LRECL=20 PAD END=EOF; 25 INPUT 26 /* Source file: POP.DAT */ 27 @1 FIPSSTR 2. 28 @3 BLANK_1 $1. 29 @4 AGER20 2. 30 @6 BLANK_2 $1. 31 @7 SEX 1. 32 @8 BLANK_3 $1. 33 @9 HISPANR 1. 34 @10 BLANK_4 $1. 35 @11 RACER4 1. 36 @12 BLANK_5 $1. 37 @13 POP1 $8. 38 ; 39 LABEL 40 FIPSSTR='FIPS State of Residence' 41 BLANK_1='Undefined Field' 42 AGER20='Age Recode 20' 43 BLANK_2='Undefined Field' 44 SEX='Sex' 45 BLANK_3='Undefined Field' 46 HISPANR='Hispanic Origin Recode' 47 BLANK_4='Undefined Field' 48 RACER4='Race Recode 4' 49 BLANK_5='Undefined Field' 50 POP1='FIPS State, Sex by Ager20,Sex,His...' /*panic,Racer4*/ 51 ; NOTE: The infile '/home/data/mortality/1994/data/Pop94.dat' is: 2 The SAS System 11:56 Thursday, March 15, 2001 File Name=/home/data/mortality/1994/data/Pop94.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/1994/data/Pop94.dat'. The minimum record length was 20. The maximum record length was 20. One or more lines were truncated. 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.019 seconds 52 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.005 seconds 53 PROC CONTENTS DATA=IN; NOTE: The PROCEDURE CONTENTS printed page 2. NOTE: PROCEDURE CONTENTS used: real time 0.040 seconds cpu time 0.008 seconds NOTE: The SAS System used: real time 0.370 seconds cpu time 0.070 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414