1 The SAS System 16:23 Wednesday, August 9, 2000 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. This message is contained in the SAS news file, and is presented upon initialization. Edit the files "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: AUTOEXEC processing beginning; file is /usr/sunos/local/sas612/autoexec.sas. NOTE: SAS initialization used: real time 0.150 seconds cpu time 0.092 seconds NOTE: AUTOEXEC processing completed. 1 /* \\Nber\home\data\births-ascii\1995\natality\natpop95.sas: NCHS SETS output for SAS 2 * Export from Set E:\nchs\Nata1995.set 3 * Thursday, Jul 27, 2000, 10:49:34 AM 4 */ 5 6 OPTIONS COMPRESS='YES'; 7 PROC FORMAT; 7 8 /* Source file: natpop95.dat */ 9 VALUE P1L (default=40) 10 00 ='Foreign residents' 11 01 ='Alabama' 12 02 ='Alaska' 13 04 ='Arizona' 14 05 ='Arkansas' 15 06 ='California' 16 08 ='Colorado' 17 09 ='Connecticut' 18 10 ='Delaware' 19 11 ='District of Columbia' 20 12 ='Florida' 21 13 ='Georgia' 22 15 ='Hawaii' 23 16 ='Idaho' 24 17 ='Illinois' 25 18 ='Indiana' 26 19 ='Iowa' 27 20 ='Kansas' 28 21 ='Kentucky' 29 22 ='Louisiana' 30 23 ='Maine' 31 24 ='Maryland' 32 25 ='Massachusetts' 33 26 ='Michigan' 34 27 ='Minnesota' 35 28 ='Mississippi' 36 29 ='Missouri' 37 30 ='Montana' 38 31 ='Nebraska' 39 32 ='Nevada' 40 33 ='New Hampshire' 41 34 ='New Jersey' 42 35 ='New Mexico' 43 36 ='New York' 44 37 ='North Carolina' 45 38 ='North Dakota' 46 39 ='Ohio' 47 40 ='Oklahoma' 48 41 ='Oregon' 49 42 ='Pennsylvania' 50 44 ='Rhode Island' 51 45 ='South Carolina' 52 46 ='South Dakota' 2 The SAS System 16:23 Wednesday, August 9, 2000 53 47 ='Tennessee' 54 48 ='Texas' 55 49 ='Utah' 56 50 ='Vermont' 57 51 ='Virginia' 58 53 ='Washington' 59 54 ='West Virginia' 60 55 ='Wisconsin' 61 56 ='Wyoming' 62 ; NOTE: Format P1L has been output. 62 63 VALUE P2L (default=40) 64 1 ='Under 15 years' 65 2 ='15-19 years' 66 3 ='20-24 years' 67 4 ='25-29 years' 68 5 ='30-34 years' 69 6 ='35-39 years' 70 7 ='40-44 years' 71 8 ='45-49 years' 72 ; NOTE: Format P2L has been output. 72 73 VALUE P3L (default=40) 74 1 ='Nonhispanic' 75 2 ='Hispanic' 76 ; NOTE: Format P3L has been output. 76 77 VALUE P4L (default=40) 78 1 ='White' 79 2 ='Black' 80 3 ='American Indian' 81 4 ='Asian/Pacific Islander' 82 ; NOTE: Format P4L has been output. 82 NOTE: PROCEDURE FORMAT used: real time 0.030 seconds cpu time 0.028 seconds 83 DATA temp; 84 LENGTH 85 DEFAULT=3; 86 INFILE '/home/data/births-ascii/1995/natality/natpop95.exp' lrecl=100 pad; 87 INPUT 88 89 /* Source file: natpop95.dat */ 90 /* Records: all */ 91 @1 STRESFIP 2. 92 @3 MAGE8 1. 93 @4 HISPR2 1. 94 @5 MRACE4 1. 95 @6 ADEQUACY $CHAR1. 96 @7 BWIMP $CHAR1. 97 @8 CDOBMIMP $CHAR1. 98 @9 CITRSPOP $CHAR1. 99 @10 CITYRES $CHAR1. 100 @11 CLINGEST $CHAR1. 101 @12 CMSA $CHAR1. 102 @13 CNTOCFIP $CHAR1. 103 @14 CNTOCPOP $CHAR1. 104 @15 CNTRSPOP $CHAR1. 105 @16 CNTYNAT $CHAR1. 106 @17 CNTYRES $CHAR1. 107 @18 CNTYRFIP $CHAR1. 108 @19 CSEX $CHAR1. 109 @20 CSEXIMP $CHAR1. 110 @21 DBIRWT $CHAR1. 111 @22 DFAGE $CHAR1. 112 @23 DFAGERPT $CHAR1. 113 @24 DIVSTOCC $CHAR1. 114 @25 DIVSTRES $CHAR1. 3 The SAS System 16:23 Wednesday, August 9, 2000 115 @26 DLIVORD $CHAR1. 116 @27 DMAGE $CHAR1. 117 @28 DMAGERPT $CHAR1. 118 @29 DMAR $CHAR1. 119 @30 DMARIMP $CHAR1. 120 @31 DMEDUC $CHAR1. 121 @32 DPLURAL $CHAR1. 122 @33 DTOTORD $CHAR1. 123 @34 FAGE11 $CHAR1. 124 @35 FAGERFLG $CHAR1. 125 @36 FLGBWIMP $CHAR1. 126 @37 FMAPS $CHAR1. 127 @38 FMAPSR $CHAR1. 128 @39 FRACE $CHAR1. 129 @40 FRACE4 $CHAR1. 130 @41 FRACEIMP $CHAR1. 131 @42 GESTAT $CHAR1. 132 @43 GESTAT10 $CHAR1. 133 @44 GESTAT3 $CHAR1. 134 @45 GESTESTM $CHAR1. 135 @46 GESTIMP $CHAR1. 136 @47 BIRWT4 $CHAR1. 137 @48 LIVORD9 $CHAR1. 138 @49 LMPDAY $CHAR1. 139 @50 LMPMON $CHAR1. 140 @51 LMPYR $CHAR1. 141 @52 MAGE12 $CHAR1. 142 @53 MAGE36 $CHAR1. 143 @54 BIRWT12 $CHAR1. 144 @55 MAGEIMP $CHAR1. 145 @56 MAGERFLG $CHAR1. 146 @57 MEDUC6 $CHAR1. 147 @58 METRORES $CHAR1. 148 @59 MONPRE $CHAR1. 149 @60 MPLBIR $CHAR1. 150 @61 MPLBIRR $CHAR1. 151 @62 MPRE5 $CHAR1. 152 @63 MPRE6 $CHAR1. 153 @64 MRACE $CHAR1. 154 @65 BIRMON $CHAR1. 155 @66 MRACEIMP $CHAR1. 156 @67 NLBND $CHAR1. 157 @68 NLBNL $CHAR1. 158 @69 NOTERM $CHAR1. 159 @70 NPREV12 $CHAR1. 160 @71 NPREVIST $CHAR1. 161 @72 ORFATH $CHAR1. 162 @73 ORMOTH $CHAR1. 163 @74 ORRACEF $CHAR1. 164 @75 ORRACEM $CHAR1. 165 @76 PLDEL $CHAR1. 166 @77 PLDEL3 $CHAR1. 167 @78 PLURIMP $CHAR1. 168 @79 WEEKDAY $CHAR1. 169 @80 RDSCRES $CHAR1. 170 @81 RDSSCOCC $CHAR1. 171 @82 REGNOCC $CHAR1. 172 @83 REGNRES $CHAR1. 173 @84 RESTATUS $CHAR1. 174 @85 SMSARFIP $CHAR1. 175 @86 STATENAT $CHAR1. 176 @87 STATERES $CHAR1. 177 @88 STNATEXP $CHAR1. 178 @89 STOCCFIP $CHAR1. 179 @90 STRESEXP $CHAR1. 180 @91 TOTORD9 $CHAR1. 181 @92 BIRATTND $CHAR1. 182 @93 POP4 8. 183 ; 184 LABEL 185 STRESFIP='FIPS State code' 186 MAGE8='Age of Mother' 187 HISPR2='Hispanic Origin of Mother' 188 MRACE4="Mother's Race Status" 189 ADEQUACY='Adequacy of Care Recode (Kessner Index)' 190 BWIMP='Imputed Birthweight' 4 The SAS System 16:23 Wednesday, August 9, 2000 191 CDOBMIMP='Month of Birth of Child Imputation Flag' 192 CITRSPOP='Population Size of City of Residence' 193 CITYRES='City of Residence' 194 CLINGEST='Clinical Estimate of Gestation' 195 CMSA='CMSA of Residence (FIPS)' 196 CNTOCFIP='County of Occurrence (FIPS)' 197 CNTOCPOP='Population size of County of Occurrence' 198 CNTRSPOP='Population Size of County of Residence' 199 CNTYNAT='County of Occurrence' 200 CNTYRES='County of Residence' 201 CNTYRFIP='County of Residence (FIPS)' 202 CSEX='Sex' 203 CSEXIMP='Sex Imputation Flag' 204 DBIRWT='Birth Weight - Detail In Grams' 205 DFAGE='Age of Father' 206 DFAGERPT='Reported Age of Father' 207 DIVSTOCC='Division and State of Occurrence' 208 DIVSTRES='Division, State Subcode of Residence' 209 DLIVORD='Detail Live Birth Order' 210 DMAGE='Age of Mother' 211 DMAGERPT='Reported Age of Mother' 212 DMAR='Marital Status of Mother' 213 DMARIMP='Marital Status of Mother Imputation Flag' 214 DMEDUC='Education of Mother Detail' 215 DPLURAL='Plurality' 216 DTOTORD='Detail Total Birth Order' 217 FAGE11='Age of Father Recode' 218 FAGERFLG='Reported Age of Father Used Flag' 219 FLGBWIMP='Imputed Birthweight Flag' 220 FMAPS='Five Minute Apgar Score' 221 FMAPSR='Five Minute Apgar Score Recode' 222 FRACE='Race of Father' 223 FRACE4='Race of Father Recode' 224 FRACEIMP='Race of Father Imputation Flag' 225 GESTAT='Gestation - Detail in Weeks' 226 GESTAT10='Gestation Recode 10' 227 GESTAT3='Gestation Recode 3' 228 GESTESTM='Clinical Estimate of Gestation Used Flag' 229 GESTIMP='Gestation Imputation Flag' 230 BIRWT4='Birth Weight Recode 4' 231 LIVORD9='Live Birth Order Recode' 232 LMPDAY='Day Last Normal Menses Began' 233 LMPMON='Month Last Normal Menses Began' 234 LMPYR='Year Last Normal Menses Began' 235 MAGE12='Age of Mother Recode 12' 236 MAGE36='Age of Mother Recode 36' 237 BIRWT12='Birth Weight Recode 12' 238 MAGEIMP='Age of Mother Imputation Flag' 239 MAGERFLG='Reported Age of Mother Used Flag' 240 MEDUC6='Education of Mother Recode' 241 METRORES='Metropolitan - NonMetropolitan County...' /* of Residence*/ 242 MONPRE='Detail Month of Pregnancy Prenatal Ca...' /*re Began*/ 243 MPLBIR='Place of Birth of Mother' 244 MPLBIRR='Place of Birth of Mother Recode' 245 MPRE5='Month Prenatal Care Began Recode 5' 246 MPRE6='Month Prenatal Care Began Recode 6' 247 MRACE='Race of Mother' 248 BIRMON='Month of Birth' 249 MRACEIMP='Race of Mother Imputation Flag' 250 NLBND='Number of Live Births, now dead' 251 NLBNL='Number of Live Births, now living' 252 NOTERM='Number of Other Terminations' 253 NPREV12='Number of Prenatal Visits Recode' 254 NPREVIST='Total Number of Prenatal Visits' 255 ORFATH='Hispanic Origin of Father' 256 ORMOTH='Hispanic Origin of Mother' 257 ORRACEF='Hispanic Origin and Race of Father Re...' /*code*/ 258 ORRACEM='Hispanic Origin and Race of Mother Re...' /*code*/ 259 PLDEL='Place or facility of birth' 260 PLDEL3='Place or Facility of Birth Recode' 261 PLURIMP='Plurality Imputation Flag' 262 WEEKDAY='Day of Week Child Born' 263 RDSCRES='Region, Div, State Subcode of Residence' 264 RDSSCOCC='Region, Div, State Subcode of Occurrence' 265 REGNOCC='Region of Occurrence' 266 REGNRES='Region of Residence' 5 The SAS System 16:23 Wednesday, August 9, 2000 267 RESTATUS='Resident status' 268 SMSARFIP='PMSA/MSA of Residence (FIPS)' 269 STATENAT='State of Occurrence' 270 STATERES='State of Residence' 271 STNATEXP='Expanded State of Occurrence' 272 STOCCFIP='State of Occurrence (FIPS)' 273 STRESEXP='Expanded State of Residence' 274 TOTORD9='Total Birth Order Recode' 275 BIRATTND='Attendant at birth' 276 POP4='POP4' 277 ; 278 FORMAT 279 STRESFIP P1L. 280 MAGE8 P2L. 281 HISPR2 P3L. 282 MRACE4 P4L. 283 ; 284 *PROC CONTENTS; NOTE: The infile '/home/data/births-ascii/1995/natality/natpop95.exp' is: File Name=/home/data/births-ascii/1995/natality/natpop95.exp, Owner Name=jroth,Group Name=aging, Access Permission=rw-r--r--, File Size (bytes)=249696 NOTE: 2448 records were read from the infile '/home/data/births-ascii/1995/natality/natpop95.exp'. The minimum record length was 100. The maximum record length was 100. One or more lines were truncated. NOTE: The data set WORK.TEMP has 2448 observations and 92 variables. NOTE: Compressing data set WORK.TEMP decreased size by 66.67 percent. Compressed is 11 pages; un-compressed would require 33 pages. NOTE: DATA statement used: real time 0.390 seconds cpu time 0.327 seconds 285 proc print data=temp; NOTE: Access by observation number not available. Observation numbers will be counted by PROC PRINT. NOTE: The PROCEDURE PRINT printed pages 1-88. NOTE: PROCEDURE PRINT used: real time 0.770 seconds cpu time 0.739 seconds NOTE: The SAS System used: real time 1.360 seconds cpu time 1.199 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414