*options obs=100 ; options nocenter ; /*------------------------------------------------ by Jean Roth Wed Apr 1 12:54:41 EDT 2009 This program reads the 2004 NCHS Natality Detail U.S. Territories Data File Report errors to jroth@nber.org This program is distributed under the GNU GPL. See end of this file and http://www.gnu.org/licenses/ for details. ----------------------------------------------- */ * The following line should contain the directory where the SAS file is to be stored ; libname library "."; * The following line should contain the complete path and name of the raw data file. On a PC, use backslashes in paths as in C:\ ; FILENAME datafile pipe "zcat /homes/data/natality/ftp.cdc.gov/pub/Health_Statistics/NCHS/Datasets/DVS/natality/Nat2004ps.zip "; * The following line should contain the name of the SAS dataset ; %let dataset = library.natlterr2004; DATA &dataset ; INFILE datafile LRECL = 20000 ; attrib revision length=$1 label="Revision U,R"; attrib recwt length=3 label="Record Weight U,R"; attrib dob_yy length=4 label="Birth Year U,R"; attrib dob_mm length=3 label="Birth Month U,R"; attrib dob_wk length=3 label="Weekday U,R"; attrib ostate length=$2 label="Occurrence State U,R"; attrib xostate length=$2 label="Expanded Occurrence State U,R"; attrib ocntyfips length=3 label="Occurrence FIPS County U,R"; attrib ocntypop length=3 label="Occurence County Population U,R"; attrib ubfacil length=3 label="Birth Place U,R"; attrib bfacil3 length=3 label="Birth Place Recode U,R"; attrib mage_impflg length=3 label="Mother's Age Imputated Flag U,R"; attrib mage_repflg length=3 label="Reported Age of Mother Flag U,R"; attrib mager length=3 label="Mother's Single Year of Age U,R"; attrib mager14 length=3 label="Mother's Age Recode 14 U,R"; attrib mager9 length=3 label="Mother's Age Recode 9 U,R"; attrib umbstate length=$2 label="Mother's Birth State U,R"; attrib mbstate_rec length=3 label="Mother's Birth State Recode U,R"; attrib xmrstate length=$2 label="Expanded State of Residence of Mother U,R"; attrib mrstate length=$2 label="Mother's Residence State U,R"; attrib mrcntyfips length=3 label="Mother's County of Residence (FIPS) U,R"; attrib mrcityfips length=4 label="Mother's Place of Residence (FIPS) U,R"; attrib cmsa length=3 label="Consolidated Metropolitan Statistical Area U,R "; attrib msa length=4 label="Metropolitan Statistical Area U,R "; attrib msa_pop length=$1 label="Population of Statistical Area U,R "; attrib rcnty_pop length=$1 label="Population of Residence County U,R "; attrib rcity_pop length=$1 label="Population of Residence City U,R "; attrib metrores length=$1 label="Metropolitan Residence County U,R"; attrib rectype length=3 label="Record Type U,R"; attrib restatus length=3 label="Resident Status U,R"; attrib mbrace length=3 label="Mother's Bridged Race R "; attrib mrace length=3 label="Mother's Race U "; attrib mracerec length=3 label="Mother's Race Recode U,R"; attrib mraceimp length=$1 label="Mother's Race Imputed Flag U,R "; attrib umhisp length=3 label="Mother's Hispanic Origin U,R "; attrib mracehisp length=3 label="Mother's Race/Hispanic Origin U,R "; attrib mar length=3 label="Mother's Marital Status U,R"; attrib mar_imp length=3 label="Mother's Marital Status Imputed Flag U,R"; attrib meduc length=3 label="Mother's Education R "; attrib dmeduc length=3 label="Mother's Education U "; attrib meduc_rec length=3 label="Mother's Education Recode U "; attrib fagerpt_flg length=3 label="Father's Reported Age Used U,R"; attrib fagerpt length=3 label="Father's Reported Age U,R"; attrib fagecomb length=3 label="Father's Combined Age (Revised) R"; attrib ufagecomb length=3 label="Father's Combined Age U"; attrib fagerec11 length=3 label="Father's Age Recode 11 U,R"; attrib fbrace length=3 label="Father's Bridged Race R "; attrib fraceimp length=3 label="Father's Race Imputed U"; attrib fracerec length=3 label="Father's Race Recode U,R"; attrib ufhisp length=3 label="Father's Hispanic Origin U,R "; attrib fracehisp length=3 label="Father's Race/Hispanic Origin U,R "; attrib frace length=3 label="Father's Race U "; attrib priorlive length=3 label="Prior Births Now Living U,R"; attrib priordead length=3 label="Prior Births Now Dead U,R"; attrib priorterm length=3 label="Prior Other Terminations U,R"; attrib lbo length=3 label="Live Birth Order U,R"; attrib lbo_rec length=3 label="Live Birth Order Recode U,R"; attrib tbo length=3 label="Total Birth Order U,R"; attrib tbo_rec length=3 label="Total Birth Order Recode U,R"; attrib dllb_mm length=3 label="Date of Last Live Birth - Month U,R"; attrib dllb_yy length=4 label="Date of Last Live Birth - Year U,R"; attrib precare length=3 label="Month Prenatal Care Began R"; attrib precare_rec length=3 label="Month Prenatal Care Began Recode R"; attrib mpcb length=3 label="Month Prenatal Care Began U"; attrib mpcb_rec6 length=3 label="Month Prenatal Care Began Recode 6 U"; attrib mpcb_rec5 length=3 label="Month Prenatal Care Began Recode 5 U"; attrib uprevis length=3 label="Number of Prenatal Visits U,R"; attrib previs_rec length=3 label="Number of Prenatal Visits Recode U,R"; attrib apncu length=3 label="Adequacy of Prenatal Care Utilization Index R"; attrib wtgain length=3 label="Weight Gain U,R"; attrib wtgain_rec length=3 label="Weight Gain Recode U,R"; attrib u_apncu length=3 label="Adequacy of Prenatal Care Utilization Index U"; attrib dfpc_imp length=3 label="Day of Date First Prenatal Care Imputed R "; attrib cig_1 length=3 label="Cigarettes 1st Trimester R "; attrib cig_2 length=3 label="Cigarettes 2nd Trimester R "; attrib cig_3 length=3 label="Cigarettes 3rd Trimester R "; attrib tobuse length=3 label="Tobacco Use U"; attrib cigs length=3 label="Cigarettes Per Day U"; attrib cig_rec6 length=3 label="Cigarettes Recode U"; attrib cig_rec length=$1 label="Cigarettes Recode R"; attrib alcohol length=3 label="Alcohol Use U "; attrib drinks length=3 label="Drinks Per Week U"; attrib drinks_rec length=3 label="Drinks Recode U "; attrib urf_anemia length=3 label="Anemia U "; attrib urf_card length=3 label="Cardiac U"; attrib urf_lung length=3 label="Acute or Chronic Lung Disease U"; attrib urf_diab length=3 label="Diabetes U,R"; attrib urf_gen length=3 label="Genital Herpes U"; attrib urf_hydra length=3 label="Hydramnios/Oligohydramnios U"; attrib urf_hemo length=3 label="Hemoglobinopathy U"; attrib urf_chyper length=3 label="Chronic Hypertension U,R"; attrib urf_phyper length=3 label="Pregnancy Associated Hypertension U,R"; attrib urf_eclam length=3 label="Eclampsia U,R"; attrib urf_incerv length=3 label="Incompetent cervix U"; attrib urf_pre4000 length=3 label="Previous infant 4000+ Grams U"; attrib urf_preterm length=3 label="Previous Preterm or Small for Gestation U"; attrib urf_renal length=3 label="Renal disease U"; attrib urf_rh length=3 label="Rh sensitization U"; attrib urf_uterine length=3 label="Uterine bleeding U"; attrib urf_other length=3 label="Other Medical Risk Factors U"; attrib uop_amnio length=3 label="Amniocentesis U"; attrib uop_monit length=3 label="Electronic Fetal Monitoring U"; attrib uop_induc length=3 label="Induction of labor U,R"; attrib uop_stiml length=3 label="Stimulation of labor U"; attrib uop_tocol length=3 label="Tocolysis U,R"; attrib uop_ultra length=3 label="Ultrasound U"; attrib uop_other length=3 label="Other Obstetric Procedures U"; attrib uld_febr length=3 label="Febrile U"; attrib uld_meco length=3 label="Meconium U,R"; attrib uld_ruptr length=3 label="Premature Rupture of Membrane U"; attrib uld_abrup length=3 label="Abruptio placenta U"; attrib uld_prepla length=3 label="Placenta previa U"; attrib uld_excbl length=3 label="Other Excessive Bleeding U"; attrib uld_seiz length=3 label="Seizures During Labor U "; attrib uld_precip length=3 label="Precipitous labor U,R"; attrib uld_prolg length=3 label="Prolonged Labor U"; attrib uld_dysfn length=3 label="Dysfunctional Labor U"; attrib uld_breech length=3 label="Breech U,R"; attrib uld_cephal length=3 label="Cephalopelvic Disproportion U"; attrib uld_cord length=3 label="Cord Prolapse U"; attrib uld_anest length=3 label="Anesthetic Complications U"; attrib uld_distr length=3 label="Fetal Distress U"; attrib uld_other length=3 label="Other Complications U"; attrib ume_vag length=3 label="Vaginal U,R"; attrib ume_vbac length=3 label="Vaginal after C-Section U,R"; attrib ume_primc length=3 label="Primary C-Section U,R"; attrib ume_repec length=3 label="Repeat C-Section U,R"; attrib ume_forcp length=3 label="Forceps U,R "; attrib ume_vac length=3 label="Vacuum U,R"; attrib dmeth_rec length=3 label="Delivery Method Recode U,R"; attrib attend length=3 label="Attendant U,R"; attrib apgar5 length=3 label="Five Minute Apgar Score U,R"; attrib apgar5r length=3 label="Five Minute Apgar Recode U,R"; attrib dplural length=3 label="Plurality U,R"; attrib imp_plur length=3 label="Plurality Imputed U,R"; attrib sex length=$1 label="Sex U,R"; attrib imp_sex length=3 label="Imputed Sex "; attrib dlmp_mm length=3 label="Last Normal Menses - Month U,R"; attrib dlmp_dd length=3 label="Last Normal Menses - Day U,R"; attrib dlmp_yy length=4 label="Last Normal Menses - Year U,R"; attrib estgest length=3 label="Obstetric/Clinical Gestation Est. U,R "; attrib combgest length=3 label="Gestation - Detail in Weeks U,R"; attrib gestrec10 length=3 label="Gestation Recode 10 U,R"; attrib gestrec3 length=3 label="Gestation Recode 3 U,R"; attrib obgest_flg length=3 label="Clinical Estimate of Gestation Used Flag U,R "; attrib gest_imp length=3 label="Gestation Imputed Flag U,R"; attrib dbwt length=4 label="Birth Weight - Detail in Grams U,R"; attrib bwtr12 length=3 label="Birth Weight Recode 12 U,R"; attrib bwtr4 length=3 label="Birth Weight Recode 4 U,R"; attrib uab_anem length=3 label="Anemia U"; attrib uab_injury length=3 label="Birth Injury U"; attrib uab_alcoh length=3 label="Fetal Alcohol Syndrome U"; attrib uab_hyal length=3 label="Hyaline Membrane Disease U"; attrib uab_mecon length=3 label="Meconium Aspiration Syndrome U"; attrib uab_venl30 length=3 label="Assisted Ventilation < 30 min U"; attrib uab_ven30m length=3 label="Assisted Ventilation >= 30 min U"; attrib uab_nseiz length=3 label="Seizures U"; attrib uab_other length=3 label="Other Abnormal Conditions U"; attrib uca_anen length=3 label="Anencephalus U,R"; attrib uca_spina length=3 label="Spina bifida/Meningocele U,R"; attrib uca_hydro length=3 label="Hydrocephalus U"; attrib uca_micro length=3 label="Microcephalus U"; attrib uca_nerv length=3 label="Other Central Nervous System Anomalies U"; attrib uca_heart length=3 label="Heart malformations U"; attrib uca_circ length=3 label="Other Circulatory/Respiratory Anomalies U"; attrib uca_rectal length=3 label="Rectal Atresia/Stenosis U"; attrib uca_trach length=3 label="Tracheo-Esophageal Fistula U"; attrib uca_ompha length=3 label="Omphalocele/Gastroschisis U,R"; attrib uca_gastro length=3 label="Other Gastrointestinal Anomalies U"; attrib uca_genital length=3 label="Malformed Genitalia U "; attrib uca_renal length=3 label="Renal Agenesis U"; attrib uca_urogen length=3 label="Other Urogenital Anomalies U"; attrib uca_cleftlp length=3 label="Cleft Lip/Palate U,R"; attrib uca_adactyly length=3 label="Polydactyly/Syndactyly/Adactyly U"; attrib uca_clubft length=3 label="Club Foot U"; attrib uca_hernia length=3 label="Diaphragmatic Hernia U"; attrib uca_muscu length=3 label="Other Musculoskeletal Anomalies U"; attrib uca_downs length=3 label="Down Syndrome U,R"; attrib uca_chromo length=3 label="Other Chromosomal Anomalies U"; attrib uca_other length=3 label="Other Congenital Anomalies U"; attrib f_morigin length=3 label="Origin of Mother U,R"; attrib f_forigin length=3 label="Origin of Father U,R"; attrib f_meduc length=3 label="Education of Mother R"; attrib f_clinest length=3 label="Clinical Estimate of Gestation U,R"; attrib f_apgar5 length=3 label="5 - minute Apgar U,R"; attrib f_tobaco length=3 label="Tobacco use R"; attrib f_med length=3 label="Mother's Education U"; attrib f_wtgain length=3 label="Weight gain U,R"; attrib f_alcol length=3 label="Alcohol use U"; attrib f_api length=3 label="API codes U"; attrib f_tobac length=3 label="Tobacco use U"; attrib f_mpcb length=3 label="Month Prenatal Care Began R"; attrib f_mpcb_u length=3 label="Month Prenatal Care Began U"; attrib f_urf_anemia length=3 label="Anemia U"; attrib f_urf_cardiac length=3 label="Cardiac U"; attrib f_urf_lung length=3 label="Acute or Chronic Lung Disease U"; attrib f_urf_diabetes length=3 label="Diabetes U"; attrib f_urf_herpes length=3 label="Genital Herpes U"; attrib f_urf_hydra length=3 label="Hydramnios/Oligohydramnios U"; attrib f_urf_hemo length=3 label="Hemoglobinopathy U"; attrib f_urf_chyper length=3 label="Chronic Hypertension U"; attrib f_urf_phyper length=3 label="Pregnancy Associated Hypertension U"; attrib f_urf_eclamp length=3 label="Eclampsia U"; attrib f_urf_incervix length=3 label="Incompetent Cervix U"; attrib f_urf_pre4000 length=3 label="Previous Infant 4000+ Grams U"; attrib f_urf_preterm length=3 label="Previous Preterm Small for Gestation U"; attrib f_urf_renal length=3 label="Renal Disease U"; attrib f_urf_rh length=3 label="Rh Sensitization U"; attrib f_urf_uterine length=3 label="Uterine Bleeding U"; attrib f_urf_othermr length=3 label="Other Medical Risk Factors U"; attrib f_uob_amnio length=3 label="Amniocentesis U"; attrib f_uob_monitor length=3 label="Electronic Fetal Monitoring U"; attrib f_uob_induct length=3 label="Induction of labor U"; attrib f_uob_stimul length=3 label="Stimulation of labor U"; attrib f_uob_tocol length=3 label="Tocolysis U"; attrib f_uob_ultras length=3 label="Ultrasound U"; attrib f_uob_otherob length=3 label="Other Obstetric Procedures U"; attrib f_uld_febrile length=3 label="Febrile U"; attrib f_uld_meconium length=3 label="Meconium U"; attrib f_uld_rupture length=3 label="Premature Rupture of Membrane U"; attrib f_uld_abruptio length=3 label="Abruptio placenta U"; attrib f_uld_preplace length=3 label="Placenta previa U"; attrib f_uld_excebld length=3 label="Other Excessive Bleeding U"; attrib f_uld_seizure length=3 label="Seizures During Labor U "; attrib f_uld_precip length=3 label="Precipitous labor U"; attrib f_uld_prolg length=3 label="Prolonged Labor U"; attrib f_uld_dysfunc length=3 label="Dysfunctional Labor U"; attrib f_uld_breech length=3 label="Breech U"; attrib f_uld_cephalo length=3 label="Cephalopelvic Disproportion U"; attrib f_uld_cord length=3 label="Cord Prolapse U"; attrib f_uld_anest length=3 label="Anesthetic Complications U"; attrib f_uld_distr length=3 label="Fetal Distress U"; attrib f_uld_other length=3 label="Other Complications U"; attrib f_u_vag length=3 label="Vaginal U"; attrib f_u_vbac length=3 label="Vaginal after C-Section U"; attrib f_u_primc length=3 label="Primary C-Section U"; attrib f_u_repec length=3 label="Repeat C-Section U"; attrib f_u_forcp length=3 label="Forceps U"; attrib f_u_vac length=3 label="Vacuum U"; attrib f_uab_anemia length=3 label="Anemia U"; attrib f_uab_injury length=3 label="Birth Injury U"; attrib f_uab_alcosyn length=3 label="Fetal Alcohol Syndrome U"; attrib f_uab_hyaline length=3 label="Hyaline Membrane Disease U"; attrib f_uab_meconsyn length=3 label="Meconium Aspiration Syndrome U"; attrib f_uab_venl30 length=3 label="Assisted Ventilation <30 min U"; attrib f_uab_ven30m length=3 label="Assisted Ventilation >=30 min U"; attrib f_uab_seiz length=3 label="Seizures U"; attrib f_uab_otherab length=3 label="Other Abnormal Conditions U"; attrib f_uca_anen length=3 label="Anencephalus U"; attrib f_uca_spina length=3 label="Spina bifida/Meningocele U"; attrib f_uca_hydro length=3 label="Hydrocephalus U"; attrib f_uca_microce length=3 label="Microcephalus U"; attrib f_uca_nervous length=3 label="Other Central Nervous System Anomalies U"; attrib f_uca_heart length=3 label="Heart malformations U"; attrib f_uca_circul length=3 label="Other Circulatory/Respiratory Anomalies U"; attrib f_uca_rectal length=3 label="Rectal Atresia/Stenosis U"; attrib f_uca_tracheo length=3 label="Tracheo-Esophageal Fistula U"; attrib f_uca_omphalo length=3 label="Omphalocele/Gastroschisis U"; attrib f_uca_gastro length=3 label="Other Gastrointestinal Anomalies U"; attrib f_uca_genital length=3 label="Malformed Genitalia U "; attrib f_uca_renalag length=3 label="Renal Agenesis U"; attrib f_uca_urogen length=3 label="Other Urogenital Anomalies U"; attrib f_uca_cleftlp length=3 label="Cleft Lip/Palate U"; attrib f_uca_adactyl length=3 label="Polydactyly/Syndactyly/Adactyly U"; attrib f_uca_club length=3 label="Club Foot U"; attrib f_uca_hernia length=3 label="Diaphragmatic Hernia U"; attrib f_uca_musculo length=3 label="Other Musculoskeletal Anomalies U"; attrib f_uca_downs length=3 label="Down Syndrome U"; attrib f_uca_chromo length=3 label="Other Chromosomal Anomalies U"; attrib f_uca_othrcon length=3 label="Other Congenital Anomalies U"; attrib mrace1e length=$3 label="Mother's Race Edited R"; attrib mrace2e length=$3 label="Mother's Race Edited R"; attrib mrace3e length=$3 label="Mother's Race Edited R"; attrib mrace4e length=$3 label="Mother's Race Edited R"; attrib mrace5e length=$3 label="Mother's Race Edited R"; attrib mrace6e length=$3 label="Mother's Race Edited R"; attrib mrace7e length=$3 label="Mother's Race Edited R"; attrib mrace8e length=$3 label="Mother's Race Edited R"; attrib frace1e length=$3 label="Father's Race Edited R"; attrib frace2e length=$3 label="Father's Race Edited R"; attrib frace3e length=$3 label="Father's Race Edited R"; attrib frace4e length=$3 label="Father's Race Edited R"; attrib frace5e length=$3 label="Father's Race Edited R"; attrib frace6e length=$3 label="Father's Race Edited R"; attrib frace7e length=$3 label="Father's Race Edited R"; attrib frace8e length=$3 label="Father's Race Edited R"; INPUT @7 revision $1. @8 recwt 1. @15 dob_yy 4. @19 dob_mm 2. @29 dob_wk 1. @30 ostate $2. @32 xostate $2. @37 ocntyfips 3. @40 ocntypop 1. @42 ubfacil 1. @59 bfacil3 1. @87 mage_impflg 1. @88 mage_repflg 1. @89 mager 2. @91 mager14 2. @93 mager9 1. @96 umbstate $2. @100 mbstate_rec 1. @107 xmrstate $2. @109 mrstate $2. @114 mrcntyfips 3. @120 mrcityfips 5. @125 cmsa 2. @127 msa 4. @131 msa_pop $1. @132 rcnty_pop $1. @133 rcity_pop $1. @135 metrores $1. @137 rectype 1. @138 restatus 1. @139 mbrace 2. @141 mrace 2. @143 mracerec 1. @144 mraceimp $1. @148 umhisp 1. @149 mracehisp 1. @153 mar 1. @154 mar_imp 1. @155 meduc 1. @156 dmeduc 2. @158 meduc_rec 1. @175 fagerpt_flg 1. @176 fagerpt 2. @182 fagecomb 2. @184 ufagecomb 2. @186 fagerec11 2. @188 fbrace 2. @190 fraceimp 1. @191 fracerec 1. @195 ufhisp 1. @196 fracehisp 1. @199 frace 2. @204 priorlive 2. @206 priordead 2. @208 priorterm 2. @210 lbo 2. @212 lbo_rec 1. @215 tbo 2. @217 tbo_rec 1. @220 dllb_mm 2. @222 dllb_yy 4. @245 precare 2. @247 precare_rec 1. @256 mpcb 2. @258 mpcb_rec6 1. @259 mpcb_rec5 1. @270 uprevis 2. @272 previs_rec 2. @275 apncu 1. @276 wtgain 2. @278 wtgain_rec 1. @279 u_apncu 1. @280 dfpc_imp 1. @284 cig_1 2. @286 cig_2 2. @288 cig_3 2. @290 tobuse 1. @291 cigs 2. @293 cig_rec6 1. @294 cig_rec $1. @295 alcohol 1. @296 drinks 2. @298 drinks_rec 1. @328 urf_anemia 1. @329 urf_card 1. @330 urf_lung 1. @331 urf_diab 1. @332 urf_gen 1. @333 urf_hydra 1. @334 urf_hemo 1. @335 urf_chyper 1. @336 urf_phyper 1. @337 urf_eclam 1. @338 urf_incerv 1. @339 urf_pre4000 1. @340 urf_preterm 1. @341 urf_renal 1. @342 urf_rh 1. @343 urf_uterine 1. @344 urf_other 1. @355 uop_amnio 1. @356 uop_monit 1. @357 uop_induc 1. @358 uop_stiml 1. @359 uop_tocol 1. @360 uop_ultra 1. @361 uop_other 1. @374 uld_febr 1. @375 uld_meco 1. @376 uld_ruptr 1. @377 uld_abrup 1. @378 uld_prepla 1. @379 uld_excbl 1. @380 uld_seiz 1. @381 uld_precip 1. @382 uld_prolg 1. @383 uld_dysfn 1. @384 uld_breech 1. @385 uld_cephal 1. @386 uld_cord 1. @387 uld_anest 1. @388 uld_distr 1. @389 uld_other 1. @395 ume_vag 1. @396 ume_vbac 1. @397 ume_primc 1. @398 ume_repec 1. @399 ume_forcp 1. @400 ume_vac 1. @401 dmeth_rec 1. @408 attend 1. @415 apgar5 2. @417 apgar5r 1. @423 dplural 1. @425 imp_plur 1. @436 sex $1. @437 imp_sex 1. @438 dlmp_mm 2. @440 dlmp_dd 2. @442 dlmp_yy 4. @446 estgest 2. @451 combgest 2. @453 gestrec10 2. @455 gestrec3 1. @456 obgest_flg 1. @457 gest_imp 1. @463 dbwt 4. @471 bwtr12 2. @473 bwtr4 1. @483 uab_anem 1. @484 uab_injury 1. @485 uab_alcoh 1. @486 uab_hyal 1. @487 uab_mecon 1. @488 uab_venl30 1. @489 uab_ven30m 1. @490 uab_nseiz 1. @491 uab_other 1. @504 uca_anen 1. @505 uca_spina 1. @506 uca_hydro 1. @507 uca_micro 1. @508 uca_nerv 1. @509 uca_heart 1. @510 uca_circ 1. @511 uca_rectal 1. @512 uca_trach 1. @513 uca_ompha 1. @514 uca_gastro 1. @515 uca_genital 1. @516 uca_renal 1. @517 uca_urogen 1. @518 uca_cleftlp 1. @519 uca_adactyly 1. @520 uca_clubft 1. @521 uca_hernia 1. @522 uca_muscu 1. @523 uca_downs 1. @524 uca_chromo 1. @525 uca_other 1. @569 f_morigin 1. @570 f_forigin 1. @571 f_meduc 1. @573 f_clinest 1. @574 f_apgar5 1. @575 f_tobaco 1. @647 f_med 1. @648 f_wtgain 1. @649 f_alcol 1. @650 f_api 1. @667 f_tobac 1. @668 f_mpcb 1. @669 f_mpcb_u 1. @681 f_urf_anemia 1. @682 f_urf_cardiac 1. @683 f_urf_lung 1. @684 f_urf_diabetes 1. @685 f_urf_herpes 1. @686 f_urf_hydra 1. @687 f_urf_hemo 1. @688 f_urf_chyper 1. @689 f_urf_phyper 1. @690 f_urf_eclamp 1. @691 f_urf_incervix 1. @692 f_urf_pre4000 1. @693 f_urf_preterm 1. @694 f_urf_renal 1. @695 f_urf_rh 1. @696 f_urf_uterine 1. @697 f_urf_othermr 1. @701 f_uob_amnio 1. @702 f_uob_monitor 1. @703 f_uob_induct 1. @704 f_uob_stimul 1. @705 f_uob_tocol 1. @706 f_uob_ultras 1. @707 f_uob_otherob 1. @711 f_uld_febrile 1. @712 f_uld_meconium 1. @713 f_uld_rupture 1. @714 f_uld_abruptio 1. @715 f_uld_preplace 1. @716 f_uld_excebld 1. @717 f_uld_seizure 1. @718 f_uld_precip 1. @719 f_uld_prolg 1. @720 f_uld_dysfunc 1. @721 f_uld_breech 1. @722 f_uld_cephalo 1. @723 f_uld_cord 1. @724 f_uld_anest 1. @725 f_uld_distr 1. @726 f_uld_other 1. @730 f_u_vag 1. @731 f_u_vbac 1. @732 f_u_primc 1. @733 f_u_repec 1. @734 f_u_forcp 1. @735 f_u_vac 1. @740 f_uab_anemia 1. @741 f_uab_injury 1. @742 f_uab_alcosyn 1. @743 f_uab_hyaline 1. @744 f_uab_meconsyn 1. @745 f_uab_venl30 1. @746 f_uab_ven30m 1. @747 f_uab_seiz 1. @748 f_uab_otherab 1. @752 f_uca_anen 1. @753 f_uca_spina 1. @754 f_uca_hydro 1. @755 f_uca_microce 1. @756 f_uca_nervous 1. @757 f_uca_heart 1. @758 f_uca_circul 1. @759 f_uca_rectal 1. @760 f_uca_tracheo 1. @761 f_uca_omphalo 1. @762 f_uca_gastro 1. @763 f_uca_genital 1. @764 f_uca_renalag 1. @765 f_uca_urogen 1. @766 f_uca_cleftlp 1. @767 f_uca_adactyl 1. @768 f_uca_club 1. @769 f_uca_hernia 1. @770 f_uca_musculo 1. @771 f_uca_downs 1. @772 f_uca_chromo 1. @773 f_uca_othrcon 1. @1088 mrace1e $3. @1091 mrace2e $3. @1094 mrace3e $3. @1097 mrace4e $3. @1100 mrace5e $3. @1103 mrace6e $3. @1106 mrace7e $3. @1109 mrace8e $3. @1422 frace1e $3. @1425 frace2e $3. @1428 frace3e $3. @1431 frace4e $3. @1434 frace5e $3. @1437 frace6e $3. @1440 frace7e $3. @1443 frace8e $3. ; proc print data=&dataset. (obs=6); proc contents data=&dataset.; /* Copyright 2009 shared by the National Bureau of Economic Research and Jean Roth National Bureau of Economic Research. 1050 Massachusetts Avenue Cambridge, MA 02138 jroth@nber.org This program and all programs referenced in it are free software. You can redistribute the program or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */