*options obs=100 ; options nocenter ; /*------------------------------------------------ by Jean Roth Mon Jul 2 15:43:45 EDT 2007 This program reads the 2000 National Health Interview Survey 2000 immunize 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 "unzip -p /homes/data/nhis/ftp.cdc.gov/pub/Health_Statistics/NCHS/Datasets/NHIS/2000/immunize.exe "; * The following line should contain the name of the SAS dataset ; %let dataset = nhis2000_immunize ; DATA library.&dataset ; INFILE datafile LRECL = 20000 ; attrib rectype length=3 label="Record Type"; attrib srvy_yr length=4 label="Survey Year"; attrib hhx length=$6 label="Household Serial Number"; attrib fmx length=$2 label="Family Serial Number"; attrib px length=$2 label=""; attrib imrespno length=$2 label="Person Number of Respondent"; attrib icreltiv length=3 label="Person's relationship to child"; attrib intv_qrt length=3 label="Interview Quarter"; attrib sex length=3 label="Sex"; attrib age_p length=3 label="Age"; attrib icagemr length=3 label="Age in months"; attrib dob_m length=$2 label="Month of Birth"; attrib dob_y_p length=$4 label="Year of Birth"; attrib origin_i length=3 label="Hispanic Ethnicity"; attrib origimpt length=3 label="Hispanic Origin Imputation Flag"; attrib hispan_i length=3 label="Hispanic subgroup detail"; attrib hispimpt length=3 label="Type of Hispanic Origin Imputation Flag"; attrib rcdt1p_i length=3 label="Race coded to single/multiple race group"; attrib rc_smp_i length=3 label="Summary for single/multiple race groups"; attrib racerp_i length=3 label="OMB groups w/multiple race"; attrib raceimpt length=3 label="Race Imputation Flag"; attrib mracrp_i length=3 label="Race coded to a single race group"; attrib mracbp_i length=3 label="Race coded to a single race group"; attrib racrec_i length=3 label="Race Recode"; attrib hiscod_i length=3 label="Combined race/ethnicity recode"; attrib erimpflg length=3 label="Ethnicity/Race Imputation Flag"; attrib r_maritl length=3 label="Marital status"; attrib rrp length=3 label="Relationship to HH reference person"; attrib hh_ref length=$2 label="Person # of HH reference person"; attrib frrp length=3 label="Rel to family ref person"; attrib fm_ref length=$2 label="Person # of family reference person"; attrib mother length=$2 label="Mother of -- is a household member"; attrib father length=$2 label="Father of -- is a household member"; attrib parents length=3 label="Parent(s) present in the family"; attrib mom_deg length=3 label="Type of relationship with Mother"; attrib dad_deg length=3 label="Type of relationship with Father"; attrib guard length=$2 label="Person number of guardian"; attrib fm_size length=3 label="Number of persons in family"; attrib fm_type length=3 label="Family Type (on the person-level)"; attrib fm_strp length=3 label="Family Structure (at the person-level)"; attrib educ length=3 label="Highest level of school completed"; attrib mom_ed length=3 label="Education of Mother"; attrib dad_ed length=3 label="Education of Father"; attrib ab_bl20k length=3 label=""; attrib rat_cat length=3 label="Ratio of fam inc to poverty threshold"; attrib region length=3 label="Region"; attrib msasizep length=3 label="Geographic Distribution - MSA size"; attrib wtia_im length=4 label="Weight - Interim Annual"; attrib wtfa_im length=4 label="Weight - Final Annual"; attrib stratum length=3 label="Stratum for variance estimation"; attrib psu length=3 label="PSU for variance estimation"; attrib shotrc length=3 label="Have shot records"; attrib dtpct_c length=3 label="Count of DTP shots on shot record"; attrib dtpdt_m1 length=$2 label="Month (MM) of DTP shot #1 on shot record"; attrib dtpdt_y1 length=$4 label="Year(YYYY) of DTP shot #1 on shot record"; attrib dtpdt_m2 length=$2 label="Month (MM) of DTP shot #2 on shot record"; attrib dtpdt_y2 length=$4 label="Year(YYYY) of DTP shot #2 on shot record"; attrib dtpdt_m3 length=$2 label="Month (MM) of DTP shot #3 on shot record"; attrib dtpdt_y3 length=$4 label="Year(YYYY) of DTP shot #3 on shot record"; attrib dtpdt_m4 length=$2 label="Month (MM) of DTP shot #4 on shot record"; attrib dtpdt_y4 length=$4 label="Year(YYYY) of DTP shot #4 on shot record"; attrib dtpdt_m5 length=$2 label="Month (MM) of DTP shot #5 on shot record"; attrib dtpdt_y5 length=$4 label="Year(YYYY) of DTP shot #5 on shot record"; attrib dtpdt_m6 length=$2 label="Month (MM) of DTP shot #6 on shot record"; attrib dtpdt_y6 length=$4 label="Year(YYYY) of DTP shot #6 on shot record"; attrib dtpdt_m7 length=$2 label="Month (MM) of DTP shot #7 on shot record"; attrib dtpdt_y7 length=$4 label="Year(YYYY) of DTP shot #7 on shot record"; attrib dtpdt_m8 length=$2 label="Month (MM) of DTP shot #8 on shot record"; attrib dtpdt_y8 length=$4 label="Year(YYYY) of DTP shot #8 on shot record"; attrib polct_c length=3 label="Count of shots or doses...Polio"; attrib poldt_m1 length=$2 label="Month (MM) of polio shot #1 on shot rec."; attrib poldt_y1 length=$4 label="Year(YYYY) of polio shot #1 on shot rec."; attrib poldt_m2 length=$2 label="Month (MM) of polio shot #2 on shot rec."; attrib poldt_y2 length=$4 label="Year(YYYY) of polio shot #2 on shot rec."; attrib poldt_m3 length=$2 label="Month (MM) of polio shot #3 on shot rec."; attrib poldt_y3 length=$4 label="Year(YYYY) of polio shot #3 on shot rec."; attrib poldt_m4 length=$2 label="Month (MM) of polio shot #4 on shot rec."; attrib poldt_y4 length=$4 label="Year(YYYY) of polio shot #4 on shot rec."; attrib poldt_m5 length=$2 label="Month (MM) of polio shot #5 on shot rec."; attrib poldt_y5 length=$4 label="Year(YYYY) of polio shot #5 on shot rec."; attrib poldt_m6 length=$2 label="Month (MM) of polio shot #6 on shot rec."; attrib poldt_y6 length=$4 label="Year(YYYY) of polio shot #6 on shot rec."; attrib poldt_m7 length=$2 label="Month (MM) of polio shot #7 on shot rec."; attrib poldt_y7 length=$4 label="Year(YYYY) of polio shot #7 on shot rec."; attrib poldt_m8 length=$2 label="Month (MM) of polio shot #8 on shot rec."; attrib poldt_y8 length=$4 label="Year(YYYY) of polio shot #8 on shot rec."; attrib hibct_c length=3 label="Count of HIB shots on shot record"; attrib hibdt_m1 length=$2 label="Month (MM) of HIB shot #1 on shot record"; attrib hibdt_y1 length=$4 label="Year(YYYY) of HIB shot #1 on shot record"; attrib hibdt_m2 length=$2 label="Month (MM) of HIB shot #2 on shot record"; attrib hibdt_y2 length=$4 label="Year(YYYY) of HIB shot #2 on shot record"; attrib hibdt_m3 length=$2 label="Month (MM) of HIB shot #3 on shot record"; attrib hibdt_y3 length=$4 label="Year(YYYY) of HIB shot #3 on shot record"; attrib hibdt_m4 length=$2 label="Month (MM) of HIB shot #4 on shot record"; attrib hibdt_y4 length=$4 label="Year(YYYY) of HIB shot #4 on shot record"; attrib hibdt_m5 length=$2 label="Month (MM) of HIB shot #5 on shot record"; attrib hibdt_y5 length=$4 label="Year(YYYY) of HIB shot #5 on shot record"; attrib hibdt_m6 length=$2 label="Month (MM) of HIB shot #6 on shot record"; attrib hibdt_y6 length=$4 label="Year(YYYY) of HIB shot #6 on shot record"; attrib hibdt_m7 length=$2 label="Month (MM) of HIB shot #7 on shot record"; attrib hibdt_y7 length=$4 label="Year(YYYY) of HIB shot #7 on shot record"; attrib hibdt_m8 length=$2 label="Month (MM) of HIB shot #8 on shot record"; attrib hibdt_y8 length=$4 label="Year(YYYY) of HIB shot #8 on shot record"; attrib rotct_c length=3 label="Count of shots...Rotavirus"; attrib rotdt_m1 length=$2 label="Month (MM) of ROT dose #1 on shot record"; attrib rotdt_y1 length=$4 label="Year(YYYY) of ROT dose #1 on shot record"; attrib rotdt_m2 length=$2 label="Month (MM) of ROT dose #2 on shot record"; attrib rotdt_y2 length=$4 label="Year(YYYY) of ROT dose #2 on shot record"; attrib rotdt_m3 length=$2 label="Month (MM) of ROT dose #3 on shot record"; attrib rotdt_y3 length=$4 label="Year(YYYY) of ROT dose #3 on shot record"; attrib rotdt_m4 length=$2 label="Month (MM) of ROT dose #4 on shot record"; attrib rotdt_y4 length=$4 label="Year(YYYY) of ROT shot #4 on shot record"; attrib rotdt_m5 length=$2 label="Month (MM) of ROT dose #5 on shot record"; attrib rotdt_y5 length=$4 label="Year(YYYY) of ROT dose #5 on shot record"; attrib rotdt_m6 length=$2 label="Month (MM) of ROT dose #6 on shot record"; attrib rotdt_y6 length=$4 label="Year(YYYY) of ROT dose #6 on shot record"; attrib rotdt_m7 length=$2 label="Month (MM) of ROT dose #7 on shot record"; attrib rotdt_y7 length=$4 label="Year(YYYY) of ROT dose #7 on shot record"; attrib rotdt_m8 length=$2 label="Month (MM) of ROT dose #8 on shot record"; attrib rotdt_y8 length=$4 label="Year(YYYY) of ROT dose #8 on shot record"; attrib mmrct_c length=3 label="Count of MMR/Measles shots on shot rec."; attrib mmrdt_t1 length=3 label="Type of MMR/Measles shot #1 on shot rec."; attrib mmrdt_m1 length=$2 label="Month (MM) of MMR shot #1 on shot record"; attrib mmrdt_y1 length=$4 label="Year(YYYY) of MMR shot #1 on shot record"; attrib mmrdt_t2 length=3 label="Type of MMR/Measles shot #2 on shot rec."; attrib mmrdt_m2 length=$2 label="Month (MM) of MMR shot #2 on shot record"; attrib mmrdt_y2 length=$4 label="Year(YYYY) of MMR shot #2 on shot record"; attrib mmrdt_t3 length=3 label="Type of MMR/Measles shot #3 on shot rec."; attrib mmrdt_m3 length=$2 label="Month (MM) of MMR shot #3 on shot record"; attrib mmrdt_y3 length=$4 label="Year(YYYY) of MMR shot #3 on shot record"; attrib mmrdt_t4 length=3 label="Type of MMR/Measles shot #4 on shot rec."; attrib mmrdt_m4 length=$2 label="Month (MM) of MMR shot #4 on shot record"; attrib mmrdt_y4 length=$4 label="Year(YYYY) of MMR shot #4 on shot record"; attrib hepct_c length=3 label="Count of Hepatitis B shots on shot rec."; attrib hepdt_m1 length=$2 label="Month (MM) of Hep B shot #1 on shot rec."; attrib hepdt_y1 length=$4 label="Year(YYYY) of Hep B shot #1 on shot rec."; attrib hepdt_m2 length=$2 label="Month (MM) of Hep B shot #2 on shot rec."; attrib hepdt_y2 length=$4 label="Year(YYYY) of Hep B shot #2 on shot rec."; attrib hepdt_m3 length=$2 label="Month (MM) of Hep B shot #3 on shot rec."; attrib hepdt_y3 length=$4 label="Year(YYYY) of Hep B shot #3 on shot rec."; attrib hepdt_m4 length=$2 label="Month (MM) of Hep B shot #4 on shot rec."; attrib hepdt_y4 length=$4 label="Year(YYYY) of Hep B shot #4 on shot rec."; attrib hepdt_m5 length=$2 label="Month (MM) of Hep B shot #5 on shot rec."; attrib hepdt_y5 length=$4 label="Year(YYYY) of Hep B shot #5 on shot rec."; attrib hepdt_m6 length=$2 label="Month (MM) of Hep B shot #6 on shot rec."; attrib hepdt_y6 length=$4 label="Year(YYYY) of Hep B shot #6 on shot rec."; attrib hepdt_m7 length=$2 label="Month (MM) of Hep B shot #7 on shot rec."; attrib hepdt_y7 length=$4 label="Year(YYYY) of Hep B shot #7 on shot rec."; attrib hepdt_m8 length=$2 label="Month (MM) of Hep B shot #8 on shot rec."; attrib hepdt_y8 length=$4 label="Year(YYYY) of Hep B shot #8 on shot rec."; attrib varct_c length=3 label="Count of Varicella shots on shot record"; attrib vardt_m1 length=$2 label="Month (MM) of Varic shot #1 on shot rec."; attrib vardt_y1 length=$4 label="Year(YYYY) of Varic shot #1 on shot rec."; attrib vardt_m2 length=$2 label="Month (MM) of Varic shot #2 on shot rec."; attrib vardt_y2 length=$4 label="Year(YYYY) of Varic shot #2 on shot rec."; attrib vardt_m3 length=$2 label="Month (MM) of Varic shot #3 on shot rec."; attrib vardt_y3 length=$4 label="Year(YYYY) of Varic shot #3 on shot rec."; attrib vardt_m4 length=$2 label="Month (MM) of Varic shot #4 on shot rec."; attrib vardt_y4 length=$4 label="Year(YYYY) of Varic shot #4 on shot rec."; attrib pnect_c length=3 label="Count of shots...Pneumonia"; attrib pnedt_m1 length=$2 label="Month (MM) of PNE shot #1 on shot record"; attrib pnedt_y1 length=$4 label="Year(YYYY) of PNE shot #1 on shot record"; attrib pnedt_m2 length=$2 label="Month (MM) of PNE shot #2 on shot record"; attrib pnedt_y2 length=$4 label="Year(YYYY) of PNE shot #2 on shot record"; attrib pnedt_m3 length=$2 label="Month (MM) of PNE shot #3 on shot record"; attrib pnedt_y3 length=$4 label="Year(YYYY) of PNE shot #3 on shot record"; attrib pnedt_m4 length=$2 label="Month (MM) of PNE shot #4 on shot record"; attrib pnedt_y4 length=$4 label="Year(YYYY) of PNE shot #4 on shot record"; attrib tdbct_c length=3 label="Count of TDB shots on shot record"; attrib tdbdt_m1 length=$2 label="Month (MM) of TDB shot #1 on shot record"; attrib tdbdt_y1 length=$4 label="Year(YYYY) of TDB shot #1 on shot record"; attrib tdbdt_m2 length=$2 label="Month (MM) of TDB shot #2 on shot record"; attrib tdbdt_y2 length=$4 label="Year(YYYY) of TDB shot #2 on shot record"; attrib tdbdt_m3 length=$2 label="Month (MM) of TDB shot #3 on shot record"; attrib tdbdt_y3 length=$4 label="Year(YYYY) of TDB shot #3 on shot record"; attrib tdbdt_m4 length=$2 label="Month (MM) of TDB shot #4 on shot record"; attrib tdbdt_y4 length=$4 label="Year(YYYY) of TDB shot #4 on shot record"; attrib othrnt length=3 label="Any otr immunizations"; attrib othev01 length=3 label="Influenza vaccine"; attrib othev03 length=3 label="Hepatitis A vaccine"; attrib othev04 length=3 label="Tetramune vaccine"; attrib othev05 length=3 label="ActHib vaccine"; attrib othev06 length=3 label="Other Immunizations"; attrib oth1ct_c length=3 label="Count of influenza shots on shot record"; attrib oth1d_m1 length=$2 label="Month (MM) of Flu shot #1 on shot record"; attrib oth1d_y1 length=$4 label="Year(YYYY) of Flu shot #1 on shot record"; attrib oth1d_m2 length=$2 label="Month (MM) of Flu shot #2 on shot record"; attrib oth1d_y2 length=$4 label="Year(YYYY) of Flu shot #2 on shot record"; attrib oth1d_m3 length=$2 label="Month (MM) of Flu shot #3 on shot record"; attrib oth1d_y3 length=$4 label="Year(YYYY) of Flu shot #3 on shot record"; attrib oth1d_m4 length=$2 label="Month (MM) of Flu shot #4 on shot record"; attrib oth1d_y4 length=$4 label="Year(YYYY) of Flu shot #4 on shot record"; attrib oth1d_m5 length=$2 label="Month (MM) of Flu shot #5 on shot record"; attrib oth1d_y5 length=$4 label="Year(YYYY) of Flu shot #5 on shot record"; attrib oth1d_m6 length=$2 label="Month (MM) of Flu shot #6 on shot record"; attrib oth1d_y6 length=$4 label="Year(YYYY) of Flu shot #6 on shot record"; attrib oth3ct_c length=3 label="Count of Hepatitis A shots on shot rec."; attrib oth3d_m1 length=$2 label="Month (MM) of Hep A shot #1 on shot rec."; attrib oth3d_y1 length=$4 label="Year(YYYY) of Hep A shot #1 on shot rec."; attrib oth3d_m2 length=$2 label="Month (MM) of Hep A shot #2 on shot rec."; attrib oth3d_y2 length=$4 label="Year(YYYY) of Hep A shot #2 on shot rec."; attrib oth3d_m3 length=$2 label="Month (MM) of Hep A shot #3 on shot rec."; attrib oth3d_y3 length=$4 label="Year(YYYY) of Hep A shot #3 on shot rec."; attrib oth3d_m4 length=$2 label="Month (MM) of Hep A shot #4 on shot rec."; attrib oth3d_y4 length=$4 label="Year(YYYY) of Hep A shot #4 on shot rec."; attrib oth3d_m5 length=$2 label="Month (MM) of Hep A shot #5 on shot rec."; attrib oth3d_y5 length=$4 label="Year(YYYY) of Hep A shot #5 on shot rec."; attrib oth3d_m6 length=$2 label="Month (MM) of Hep A shot #6 on shot rec."; attrib oth3d_y6 length=$4 label="Year(YYYY) of Hep A shot #6 on shot rec."; attrib oth4ct_c length=3 label="Count of Tetramune shots on shot record"; attrib oth4d_m1 length=$2 label="Month (MM) of Tetra shot #1 on shot rec."; attrib oth4d_y1 length=$4 label="Year(YYYY) of Tetra shot #1 on shot rec."; attrib oth4d_m2 length=$2 label="Month (MM) of Tetra shot #2 on shot rec."; attrib oth4d_y2 length=$4 label="Year(YYYY) of Tetra shot #2 on shot rec."; attrib oth4d_m3 length=$2 label="Month (MM) of Tetra shot #3 on shot rec."; attrib oth4d_y3 length=$4 label="Year(YYYY) of Tetra shot #3 on shot rec."; attrib oth4d_m4 length=$2 label="Month (MM) of Tetra shot #4 on shot rec."; attrib oth4d_y4 length=$4 label="Year(YYYY) of Tetra shot #4 on shot rec."; attrib oth4d_m5 length=$2 label="Month (MM) of Tetra shot #5 on shot rec."; attrib oth4d_y5 length=$4 label="Year(YYYY) of Tetra shot #5 on shot rec."; attrib oth4d_m6 length=$2 label="Month (MM) of Tetra shot #6 on shot rec."; attrib oth4d_y6 length=$4 label="Year(YYYY) of Tetra shot #6 on shot rec."; attrib oth5ct_c length=3 label="Count of ACTHib shots on shot record"; attrib oth5d_m1 length=$2 label="Month (MM) of ACTHib shot #1 on shot rec"; attrib oth5d_y1 length=$4 label="Year(YYYY) of ACTHib shot #1 on shot rec"; attrib oth5d_m2 length=$2 label="Month (MM) of ACTHib shot #2 on shot rec"; attrib oth5d_y2 length=$4 label="Year(YYYY) of ACTHib shot #2 on shot rec"; attrib oth5d_m3 length=$2 label="Month (MM) of ACTHib shot #3 on shot rec"; attrib oth5d_y3 length=$4 label="Year(YYYY) of ACTHib shot #3 on shot rec"; attrib oth5d_m4 length=$2 label="Month (MM) of ACTHib shot #4 on shot rec"; attrib oth5d_y4 length=$4 label="Year(YYYY) of ACTHib shot #4 on shot rec"; attrib oth5d_m5 length=$2 label="Month (MM) of ACTHib shot #5 on shot rec"; attrib oth5d_y5 length=$4 label="Year(YYYY) of ACTHib shot #5 on shot rec"; attrib oth5d_m6 length=$2 label="Month (MM) of ACTHib shot #6 on shot rec"; attrib oth5d_y6 length=$4 label="Year(YYYY) of ACTHib shot #6 on shot rec"; attrib oth6ct_c length=3 label="Count of Other shots on shot record"; attrib oth6d_m1 length=$2 label="Month (MM) of Other shot #1 on shot rec."; attrib oth6d_y1 length=$4 label="Year(YYYY) of Other shot #1 on shot rec."; attrib oth6d_m2 length=$2 label="Month (MM) of Other shot #2 on shot rec."; attrib oth6d_y2 length=$4 label="Year(YYYY) of Other shot #2 on shot rec."; attrib oth6d_m3 length=$2 label="Month (MM) of Other shot #3 on shot rec."; attrib oth6d_y3 length=$4 label="Year(YYYY) of Other shot #3 on shot rec."; attrib oth6d_m4 length=$2 label="Month (MM) of Other shot #4 on shot rec."; attrib oth6d_y4 length=$4 label="Year(YYYY) of Other shot #4 on shot rec."; attrib oth6d_m5 length=$2 label="Month (MM) of Other shot #5 on shot rec."; attrib oth6d_y5 length=$4 label="Year(YYYY) of Other shot #5 on shot rec."; attrib oth6d_m6 length=$2 label="Month (MM) of Other shot #6 on shot rec."; attrib oth6d_y6 length=$4 label="Year(YYYY) of Other shot #6 on shot rec."; attrib shota1 length=3 label="All immunizations recorded"; attrib dtpmor length=3 label="Ever received additional DTP shot"; attrib dtpmno length=3 label="How many additional DTP shots"; attrib polmor length=3 label="Ever received additional Polio shot/vacc"; attrib polmno length=3 label="Number of additional Polio shots/vaccine"; attrib hibmor length=3 label="Ever received additional HIB shot"; attrib hibmno length=3 label="How many additional HIB shots"; attrib rotmor length=3 label="Ever received additional ROT vaccine"; attrib rotmno length=3 label="Number of additional ROT shots rec'd"; attrib mmrmor length=3 label="Ever received additional MMR shot"; attrib mmrmno length=3 label="How many additional MMR shots"; attrib hepmor length=3 label="Ever received add'l Hepatitis B shot"; attrib hepmno length=3 label="How many additional Hepatitis B shots"; attrib varmor length=3 label="Ever received add'l chicken pox shot"; attrib varmno length=3 label="Number of additional chicken pox shots"; attrib pnemor length=3 label="Ever received add'l pneumonia shot"; attrib pnemno length=3 label="# of add'l pneumococcal shots rec'd"; attrib tdbmor length=3 label="Ever rec'd add'l tetanus-diphtheria shot"; attrib tdbmno length=3 label="# of additional tetanus-diphtheria shots"; attrib shotay length=3 label="Ever had any immunization"; attrib dtpev length=3 label="Ever had a DTP shot"; attrib dtpeno length=3 label="How many DTP shots"; attrib polev length=3 label="Ever had a Polio shot/vaccine"; attrib poleno length=3 label="Number of Polio shots/vaccines"; attrib hibev length=3 label="Ever had a HIB shot"; attrib hibeno length=3 label="How many HIB shots"; attrib rotev length=3 label="Ever had a ROT shot"; attrib roteno length=3 label="Number of ROT shots rec'd"; attrib mmrev length=3 label="Ever had a MMR shot"; attrib mmreno length=3 label="How many MMR shots"; attrib hepev length=3 label="Ever had a Hepatitis B shot"; attrib hepeno length=3 label="How many Hepatitis B shots"; attrib varev length=3 label="Ever had a chicken pox shot"; attrib vareno length=3 label="Number of Chicken pox shots"; attrib pneev length=3 label="Ever had a pneumococcal vaccine"; attrib pneeno length=3 label="Number of pneumococcal vaccines rec'd"; attrib tdbev length=3 label="Ever had a tetanus-diphtheria (Td) shot"; attrib tdbeno length=3 label="Number of tetanus-diphtheria (Td) shots"; attrib shotpr length=3 label="Child's caretaker for shots"; attrib shota2 length=3 label="Caretaker's opinion - shots' status"; INPUT @1 rectype 2. @3 srvy_yr 4. @7 hhx $6. @13 fmx $2. @15 px $2. @17 imrespno $2. @19 icreltiv 2. @21 intv_qrt 1. @22 sex 1. @23 age_p 2. @25 icagemr 2. @27 dob_m $2. @29 dob_y_p $4. @33 origin_i 1. @34 origimpt 1. @35 hispan_i 2. @37 hispimpt 1. @38 rcdt1p_i 2. @40 rc_smp_i 2. @42 racerp_i 2. @44 raceimpt 1. @45 mracrp_i 2. @47 mracbp_i 2. @49 racrec_i 1. @50 hiscod_i 1. @51 erimpflg 1. @52 r_maritl 1. @53 rrp 2. @55 hh_ref $2. @57 frrp 2. @59 fm_ref $2. @61 mother $2. @63 father $2. @65 parents 1. @66 mom_deg 1. @67 dad_deg 1. @68 guard $2. @70 fm_size 2. @72 fm_type 1. @73 fm_strp 2. @75 educ 2. @77 mom_ed 2. @79 dad_ed 2. @81 ab_bl20k 1. @82 rat_cat 2. @84 region 1. @85 msasizep 1. @86 wtia_im 6. @92 wtfa_im 6. @98 stratum 3. @101 psu 1. @102 shotrc 1. @103 dtpct_c 2. @105 dtpdt_m1 $2. @107 dtpdt_y1 $4. @111 dtpdt_m2 $2. @113 dtpdt_y2 $4. @117 dtpdt_m3 $2. @119 dtpdt_y3 $4. @123 dtpdt_m4 $2. @125 dtpdt_y4 $4. @129 dtpdt_m5 $2. @131 dtpdt_y5 $4. @135 dtpdt_m6 $2. @137 dtpdt_y6 $4. @141 dtpdt_m7 $2. @143 dtpdt_y7 $4. @147 dtpdt_m8 $2. @149 dtpdt_y8 $4. @153 polct_c 2. @155 poldt_m1 $2. @157 poldt_y1 $4. @161 poldt_m2 $2. @163 poldt_y2 $4. @167 poldt_m3 $2. @169 poldt_y3 $4. @173 poldt_m4 $2. @175 poldt_y4 $4. @179 poldt_m5 $2. @181 poldt_y5 $4. @185 poldt_m6 $2. @187 poldt_y6 $4. @191 poldt_m7 $2. @193 poldt_y7 $4. @197 poldt_m8 $2. @199 poldt_y8 $4. @203 hibct_c 2. @205 hibdt_m1 $2. @207 hibdt_y1 $4. @211 hibdt_m2 $2. @213 hibdt_y2 $4. @217 hibdt_m3 $2. @219 hibdt_y3 $4. @223 hibdt_m4 $2. @225 hibdt_y4 $4. @229 hibdt_m5 $2. @231 hibdt_y5 $4. @235 hibdt_m6 $2. @237 hibdt_y6 $4. @241 hibdt_m7 $2. @243 hibdt_y7 $4. @247 hibdt_m8 $2. @249 hibdt_y8 $4. @253 rotct_c 2. @255 rotdt_m1 $2. @257 rotdt_y1 $4. @261 rotdt_m2 $2. @263 rotdt_y2 $4. @267 rotdt_m3 $2. @269 rotdt_y3 $4. @273 rotdt_m4 $2. @275 rotdt_y4 $4. @279 rotdt_m5 $2. @281 rotdt_y5 $4. @285 rotdt_m6 $2. @287 rotdt_y6 $4. @291 rotdt_m7 $2. @293 rotdt_y7 $4. @297 rotdt_m8 $2. @299 rotdt_y8 $4. @303 mmrct_c 2. @305 mmrdt_t1 1. @306 mmrdt_m1 $2. @308 mmrdt_y1 $4. @312 mmrdt_t2 1. @313 mmrdt_m2 $2. @315 mmrdt_y2 $4. @319 mmrdt_t3 1. @320 mmrdt_m3 $2. @322 mmrdt_y3 $4. @326 mmrdt_t4 1. @327 mmrdt_m4 $2. @329 mmrdt_y4 $4. @333 hepct_c 2. @335 hepdt_m1 $2. @337 hepdt_y1 $4. @341 hepdt_m2 $2. @343 hepdt_y2 $4. @347 hepdt_m3 $2. @349 hepdt_y3 $4. @353 hepdt_m4 $2. @355 hepdt_y4 $4. @359 hepdt_m5 $2. @361 hepdt_y5 $4. @365 hepdt_m6 $2. @367 hepdt_y6 $4. @371 hepdt_m7 $2. @373 hepdt_y7 $4. @377 hepdt_m8 $2. @379 hepdt_y8 $4. @383 varct_c 2. @385 vardt_m1 $2. @387 vardt_y1 $4. @391 vardt_m2 $2. @393 vardt_y2 $4. @397 vardt_m3 $2. @399 vardt_y3 $4. @403 vardt_m4 $2. @405 vardt_y4 $4. @409 pnect_c 2. @411 pnedt_m1 $2. @413 pnedt_y1 $4. @417 pnedt_m2 $2. @419 pnedt_y2 $4. @423 pnedt_m3 $2. @425 pnedt_y3 $4. @429 pnedt_m4 $2. @431 pnedt_y4 $4. @435 tdbct_c 2. @437 tdbdt_m1 $2. @439 tdbdt_y1 $4. @443 tdbdt_m2 $2. @445 tdbdt_y2 $4. @449 tdbdt_m3 $2. @451 tdbdt_y3 $4. @455 tdbdt_m4 $2. @457 tdbdt_y4 $4. @461 othrnt 1. @462 othev01 1. @463 othev03 1. @464 othev04 1. @465 othev05 1. @466 othev06 1. @467 oth1ct_c 2. @469 oth1d_m1 $2. @471 oth1d_y1 $4. @475 oth1d_m2 $2. @477 oth1d_y2 $4. @481 oth1d_m3 $2. @483 oth1d_y3 $4. @487 oth1d_m4 $2. @489 oth1d_y4 $4. @493 oth1d_m5 $2. @495 oth1d_y5 $4. @499 oth1d_m6 $2. @501 oth1d_y6 $4. @505 oth3ct_c 2. @507 oth3d_m1 $2. @509 oth3d_y1 $4. @513 oth3d_m2 $2. @515 oth3d_y2 $4. @519 oth3d_m3 $2. @521 oth3d_y3 $4. @525 oth3d_m4 $2. @527 oth3d_y4 $4. @531 oth3d_m5 $2. @533 oth3d_y5 $4. @537 oth3d_m6 $2. @539 oth3d_y6 $4. @543 oth4ct_c 2. @545 oth4d_m1 $2. @547 oth4d_y1 $4. @551 oth4d_m2 $2. @553 oth4d_y2 $4. @557 oth4d_m3 $2. @559 oth4d_y3 $4. @563 oth4d_m4 $2. @565 oth4d_y4 $4. @569 oth4d_m5 $2. @571 oth4d_y5 $4. @575 oth4d_m6 $2. @577 oth4d_y6 $4. @581 oth5ct_c 2. @583 oth5d_m1 $2. @585 oth5d_y1 $4. @589 oth5d_m2 $2. @591 oth5d_y2 $4. @595 oth5d_m3 $2. @597 oth5d_y3 $4. @601 oth5d_m4 $2. @603 oth5d_y4 $4. @607 oth5d_m5 $2. @609 oth5d_y5 $4. @613 oth5d_m6 $2. @615 oth5d_y6 $4. @619 oth6ct_c 2. @621 oth6d_m1 $2. @623 oth6d_y1 $4. @627 oth6d_m2 $2. @629 oth6d_y2 $4. @633 oth6d_m3 $2. @635 oth6d_y3 $4. @639 oth6d_m4 $2. @641 oth6d_y4 $4. @645 oth6d_m5 $2. @647 oth6d_y5 $4. @651 oth6d_m6 $2. @653 oth6d_y6 $4. @657 shota1 1. @658 dtpmor 1. @659 dtpmno 2. @661 polmor 1. @662 polmno 2. @664 hibmor 1. @665 hibmno 2. @667 rotmor 1. @668 rotmno 2. @670 mmrmor 1. @671 mmrmno 2. @673 hepmor 1. @674 hepmno 2. @676 varmor 1. @677 varmno 2. @679 pnemor 1. @680 pnemno 2. @682 tdbmor 1. @683 tdbmno 2. @685 shotay 1. @686 dtpev 1. @687 dtpeno 2. @689 polev 1. @690 poleno 2. @692 hibev 1. @693 hibeno 2. @695 rotev 1. @696 roteno 2. @698 mmrev 1. @699 mmreno 2. @701 hepev 1. @702 hepeno 2. @704 varev 1. @705 vareno 2. @707 pneev 1. @708 pneeno 2. @710 tdbev 1. @711 tdbeno 2. @713 shotpr 1. @714 shota2 1. ; /*------------------------------------------------ The PROC FORMAT statement will store the formats in a sas data set called fimmu00 To use the stored formats in a subsequent program, use code like the following: proc format cntlin=library.fimmu00; PROC freq; tables pesex ; format pesex P135L.; For more information, consult PROC FORMAT in the SAS Procedures Guide ----------------------------------------------- */ PROC FORMAT cntlout=library.fimmu00; ; VALUE rectype (default=32) 50 = "Immunization" ; VALUE srvy_yr (default=32) 2000 = "2000" ; VALUE $imrespn (default=32) ""98"" = "Not ascertained" ; VALUE icreltiv (default=32) 01 = "Parent (Biological; adoptive; or step)" 02 = "Grandparent" 03 = "Aunt/Uncle" 04 = "Brother/Sister" 05 = "Other relative" 06 = "Legal guardian" 07 = "Foster parent" 08 = "Other non-relative" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE intv_qrt (default=32) 1 = "Quarter 1" 2 = "Quarter 2" 3 = "Quarter 3" 4 = "Quarter 4" ; VALUE sex (default=32) 1 = "Male" 2 = "Female" ; VALUE age_p (default=32) 00 = "Under 1 year" ; VALUE icagemr (default=32) 00 = "Under 1 month" 36 = "36 months or more" ; VALUE $dob_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" ; VALUE $dob_y_p (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" ; VALUE origin_i (default=32) 1 = "Yes" 2 = "No" ; VALUE origimpt (default=32) 1 = "Imputed 'refused' Hispanic Origin response" 2 = "Imputed 'not ascertained' Hispanic Origin" 3 = "Imputed 'does not know' Hispanic Origin" 4 = "Hispanic origin given by respondent/proxy" ; VALUE hispan_i (default=32) 00 = "Multiple Hispanic" 01 = "Puerto Rican" 02 = "Mexican" 03 = "Mexican-American" 04 = "Cuban/Cuban American" 05 = "Dominican (Republic)" 06 = "Central or South American" 07 = "Other Latin American; type not specified" 08 = "Other Spanish" 09 = "Hispanic/Latino/Spanish; non-specific type" 10 = "Hispanic/Latino/Spanish; type refused" 11 = "Hispanic/Latino/Spanish; type not ascertained" 12 = "Not Hispanic/Spanish origin" ; VALUE hispimpt (default=32) 1 = "Imputed 'refused' Hispanic Origin type" 2 = "Imputed 'not ascertained' Hispanic Origin type" 3 = "Imputed 'does not know' Hispanic Origin type" 4 = "Hispanic Origin type given by respondent/proxy" ; VALUE rcdt1p_i (default=32) 01 = "White only" 02 = "Black/African American only" 03 = "AIAN only" 09 = "Asian Indian only" 10 = "Chinese only" 11 = "Filipino only" 15 = "Other Asian only" 16 = "Other race only" 17 = "Multiple detailed race*" ; VALUE rc_smp_i (default=32) 01 = "White only" 02 = "Black/African American only" 03 = "AIAN only*" 04 = "Asian only" 05 = "Other race only" 06 = "Multiple detailed race only" ; VALUE racerp_i (default=32) 01 = "White only" 02 = "Black/African American only" 03 = "AIAN* only" 04 = "Asian only" 05 = "Other race only" 06 = "Multiple race" ; VALUE raceimpt (default=32) 1 = "Imputed 'refused' race response" 2 = "Imputed 'not ascertained' race response" 3 = "Imputed 'does not know' race response" 4 = "Race given by respondent/proxy" ; VALUE mracrp_i (default=32) 01 = "White" 02 = "Black/African American" 03 = "Indian (American); Alaska Native" 09 = "Asian Indian" 10 = "Chinese" 11 = "Filipino" 15 = "Other Asian*" 16 = "Other Race*" 17 = "Multiple Race*" ; VALUE mracbp_i (default=32) 01 = "White" 02 = "Black/African American" 03 = "Indian (American) (includes Eskimo; Aleut)" 06 = "Chinese" 07 = "Filipino" 12 = "Asian Indian" 16 = "Other race" 17 = "Multiple race" ; VALUE racrec_i (default=32) 1 = "White" 2 = "Black" 3 = "Other" ; VALUE hiscod_i (default=32) 1 = "Hispanic" 2 = "Non-Hispanic White" 3 = "Non-Hispanic Black" 4 = "Non-Hispanic Other" ; VALUE erimpflg (default=32) 1 = "Ethnicity/race imputed" 2 = "Ethnicity/race given by respondent/proxy" ; VALUE r_maritl (default=32) 0 = "Under 14 years" 1 = "Married - spouse in household" 2 = "Married - spouse not in household" 3 = "Married - spouse in household unknown" 4 = "Widowed" 5 = "Divorced" 6 = "Separated" 7 = "Never married" 8 = "Living with partner" 9 = "Unknown marital status" ; VALUE rrp (default=32) 01 = "Household reference person" 02 = "Spouse (husband/wife)" 03 = "Unmarried Partner" 04 = "Child (biological/adoptive/in-law/step/foster)" 05 = "Child of partner" 06 = "Grandchild" 07 = "Parent (bio./adoptive/in-law/step/foster)" 08 = "Brother/sister (bio./adop./in-law/step/foster)" 09 = "Grandparent (Grandmother/Grandfather)" 10 = "Aunt/Uncle" 11 = "Niece/Nephew" 12 = "Other relative" 13 = "Housemate/roommate" 14 = "Roomer/Boarder" 15 = "Other nonrelative" 16 = "Legal guardian" 17 = "Ward" 97 = "Refused" 99 = "Don't know" ; VALUE $hh_ref (default=32) ""98"" = "Not ascertained" ; VALUE frrp (default=32) 01 = "Family reference person" 02 = "Spouse (husband/wife)" 03 = "Unmarried Partner" 04 = "Child (biological/adoptive/in-law/step/foster)" 05 = "Child of partner" 06 = "Grandchild" 07 = "Parent (bio./adoptive/in-law/step/foster)" 08 = "Brother/sister (bio./adop./in-law/step/foster)" 09 = "Grandparent (Grandmother/Grandfather)" 10 = "Aunt/Uncle" 11 = "Niece/Nephew" 12 = "Other relative" 16 = "Legal guardian" 17 = "Ward" 97 = "Refused" 99 = "Don't know" ; VALUE $fm_ref (default=32) ""98"" = "Not ascertained" ; VALUE $mother (default=32) ""00"" = "No mother in the family" ""96"" = "No parent in household; has legal guardian" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" ; VALUE $father (default=32) ""00"" = "No father in the family" ""96"" = "No parent in household; has legal guardian" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" ; VALUE parents (default=32) 1 = "Mother; no father" 2 = "Father; no mother" 3 = "Mother and father" 4 = "Neither mother nor father" 9 = "Unknown" ; VALUE mom_deg (default=32) 1 = "Biological" 2 = "Step" 3 = "Adoptive" 4 = "Foster" 5 = "In-law" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE dad_deg (default=32) 1 = "Biological" 2 = "Step" 3 = "Adoptive" 4 = "Foster" 5 = "In-law" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE $guard (default=32) ""00"" = "Guardian is not a household member" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE fm_type (default=32) 1 = "One adult; no child(ren) under 18" 2 = "Multiple adults; no child(ren) under 18" 3 = "One adult; 1+ child(ren) under 18" 4 = "Multiple adults; 1+ child(ren) under 18" 9 = "Unknown" ; VALUE educ (default=32) 00 = "Never attended/ kindergarten only" 12 = "12th grade; no diploma" 13 = "HIGH SCHOOL GRADUATE" 14 = "GED or equivalent" 15 = "Some college; no degree" 16 = "AA degree: technical or vocational" 17 = "AA degree: academic program" 18 = "Bachelor's degree (BA; AB; BS; BBA)" 19 = "Master's degree (MA; MS; MEng; MEd; MBA)" 20 = "Professional degree (MD; DDS; DVM; JD)" 21 = "Doctoral degree (PhD; EdD)" 96 = "Child under 5 years old" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE mom_ed (default=32) 01 = "Less/equal to 8th grade" 02 = "9-12th grade; no high school diploma" 03 = "High school graduate/GED recipient" 04 = "Some college; no degree" 05 = "AA degree; technical or vocational" 06 = "AA degree; academic program" 07 = "Bachelor's degree" 08 = "Master's; professional; or doctoral degree" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE dad_ed (default=32) 01 = "Less/equal to 8th grade" 02 = "9-12th grade; no high school diploma" 03 = "High school graduate/GED recipient" 04 = "Some college; no degree" 05 = "AA degree; technical or vocational" 06 = "AA degree; academic program" 07 = "Bachelor's degree" 08 = "Master's; professional; or doctoral degree" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE ab_bl20k (default=32) 1 = "$20;000 or more" 2 = "Less than $20;000" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE rat_cat (default=32) 01 = "Under .50" 02 = ".50 to .74" 03 = ".75 to .99" 04 = "1.00 to 1.24" 05 = "1.25 to 1.49" 06 = "1.50 to 1.74" 07 = "1.75 to 1.99" 08 = "2.00 to 2.49" 09 = "2.50 to 2.99" 10 = "3.00 to 3.49" 11 = "3.50 to 3.99" 12 = "4.00 to 4.49" 13 = "4.50 to 4.99" 14 = "5.00 and over" 96 = "Undefinable" 99 = "Unknown" ; VALUE region (default=32) 1 = "Northeast" 2 = "Midwest" 3 = "South" 4 = "West" ; VALUE msasizep (default=32) 1 = "5;000;000 or more" 2 = "2;500;000 - 4;999;999" 3 = "1;000;000 - 2;499;999" 4 = "500;000 - 999;999" 5 = "250;000 - 499;999" 6 = "Under 250;000" 7 = "Non-MSA" ; VALUE shotrc (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE dtpct_c (default=32) 00 = "None or unknown" ; VALUE $dtpdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $dtpdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $dtpdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $dtpdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $dtpdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $dtpdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $dtpdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $dtpdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $dtpdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $dtpdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $dtpdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $dtpdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $dtpdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $dtpdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $dtpdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $dtpdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE polct_c (default=32) 00 = "None or unknown" ; VALUE $poldt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $poldt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $poldt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $poldt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $poldt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $poldt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $poldt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $poldt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $poldt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $poldt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $poldt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $poldt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $poldt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $poldt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $poldt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $poldt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE hibct_c (default=32) 00 = "None or unknown" ; VALUE $hibdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $hibdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $hibdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $hibdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $hibdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $hibdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $hibdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $hibdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $hibdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $hibdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $hibdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $hibdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $hibdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $hibdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $hibdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $hibdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE rotct_c (default=32) 00 = "None or unknown" ; VALUE $rotdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $rotdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $rotdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $rotdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $rotdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $rotdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $rotdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $rotdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $rotdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $rotdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $rotdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $rotdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $rotdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $rotdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $rotdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $rotdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE mmrct_c (default=32) 00 = "None or unknown" ; VALUE mmrdt_ta (default=32) 1 = "Measles only" 2 = "MMR" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE $mmrdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $mmrdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE mmrdt_tb (default=32) 1 = "Measles only" 2 = "MMR" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE $mmrdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $mmrdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE mmrdt_tc (default=32) 1 = "Measles only" 2 = "MMR" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE $mmrdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $mmrdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE mmrdt_td (default=32) 1 = "Measles only" 2 = "MMR" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE $mmrdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $mmrdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE hepct_c (default=32) 00 = "None or unknown" ; VALUE $hepdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $hepdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $hepdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $hepdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $hepdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $hepdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $hepdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $hepdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $hepdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $hepdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $hepdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $hepdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $hepdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $hepdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $hepdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $hepdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE varct_c (default=32) 00 = "None or unknown" ; VALUE $vardt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $vardt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $vardt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $vardt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $vardt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $vardt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $vardt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $vardt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE pnect_c (default=32) 00 = "None or unknown" ; VALUE $pnedt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $pnedt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $pnedt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $pnedt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $pnedt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $pnedt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $pnedt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $pnedt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE tdbct_c (default=32) 00 = "None or unknown" ; VALUE $tdbdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $tdbdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $tdbdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $tdbdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $tdbdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $tdbdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $tdbdt_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $tdbdt_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE othrnt (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE othev01l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE othev03l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE othev04l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE othev05l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE othev06l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE oth1ct_c (default=32) 00 = "None or unknown" ; VALUE $oth1d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth1d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth1d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth1d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth1d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth1d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth1d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth1d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth1d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth1d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth1d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth1d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE oth3ct_c (default=32) 00 = "None or unknown" ; VALUE $oth3d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth3d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth3d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth3d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth3d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth3d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth3d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth3d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth3d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth3d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth3d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth3d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE oth4ct_c (default=32) 00 = "None or unknown" ; VALUE $oth4d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth4d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth4d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth4d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth4d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth4d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth4d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth4d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth4d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth4d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth4d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth4d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE oth5ct_c (default=32) 00 = "None or unknown" ; VALUE $oth5d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth5d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth5d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth5d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth5d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth5d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth5d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth5d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth5d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth5d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth5d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth5d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE oth6ct_c (default=32) 00 = "None or unknown" ; VALUE $oth6d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth6d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth6d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth6d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth6d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth6d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth6d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth6d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth6d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth6d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE $oth6d_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE $oth6d_y (default=32) ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" """ = " Not in Universe" ; VALUE shota1l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE dtpmor (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't Know" ; VALUE dtpmno (default=32) 96 = "All" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE polmor (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't Know" ; VALUE polmno (default=32) 96 = "All" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE hibmor (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't Know" ; VALUE hibmno (default=32) 96 = "All" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE rotmor (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't Know" ; VALUE rotmno (default=32) 96 = "All" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE mmrmor (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't Know" ; VALUE mmrmno (default=32) 96 = "All" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE hepmor (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't Know" ; VALUE hepmno (default=32) 96 = "All" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE varmor (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't Know" ; VALUE varmno (default=32) 96 = "All" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE pnemor (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't Know" ; VALUE pnemno (default=32) 96 = "All" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE tdbmor (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't Know" ; VALUE tdbmno (default=32) 96 = "All" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE shotay (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE dtpev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE dtpeno (default=32) 96 = "All" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE polev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE poleno (default=32) 96 = "All" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE hibev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hibeno (default=32) 96 = "All" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE rotev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE roteno (default=32) 96 = "All" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE mmrev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mmreno (default=32) 96 = "All" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE hepev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hepeno (default=32) 96 = "All" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE varev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE vareno (default=32) 96 = "All" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE pneev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE pneeno (default=32) 96 = "All" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE tdbev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE tdbeno (default=32) 96 = "All" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE shotpr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE shota2l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; proc print data=library.nhis2000_immunize (obs=6); FORMAT rectype rectype. srvy_yr srvy_yr. imrespno $imrespn. icreltiv icreltiv. intv_qrt intv_qrt. sex sex. age_p age_p. icagemr icagemr. dob_m $dob_m. dob_y_p $dob_y_p. origin_i origin_i. origimpt origimpt. hispan_i hispan_i. hispimpt hispimpt. rcdt1p_i rcdt1p_i. rc_smp_i rc_smp_i. racerp_i racerp_i. raceimpt raceimpt. mracrp_i mracrp_i. mracbp_i mracbp_i. racrec_i racrec_i. hiscod_i hiscod_i. erimpflg erimpflg. r_maritl r_maritl. rrp rrp. hh_ref $hh_ref. frrp frrp. fm_ref $fm_ref. mother $mother. father $father. parents parents. mom_deg mom_deg. dad_deg dad_deg. guard $guard. fm_type fm_type. educ educ. mom_ed mom_ed. dad_ed dad_ed. ab_bl20k ab_bl20k. rat_cat rat_cat. region region. msasizep msasizep. shotrc shotrc. dtpct_c dtpct_c. dtpdt_m1 $dtpdt_m. dtpdt_y1 $dtpdt_y. dtpdt_m2 $dtpdt_m. dtpdt_y2 $dtpdt_y. dtpdt_m3 $dtpdt_m. dtpdt_y3 $dtpdt_y. dtpdt_m4 $dtpdt_m. dtpdt_y4 $dtpdt_y. dtpdt_m5 $dtpdt_m. dtpdt_y5 $dtpdt_y. dtpdt_m6 $dtpdt_m. dtpdt_y6 $dtpdt_y. dtpdt_m7 $dtpdt_m. dtpdt_y7 $dtpdt_y. dtpdt_m8 $dtpdt_m. dtpdt_y8 $dtpdt_y. polct_c polct_c. poldt_m1 $poldt_m. poldt_y1 $poldt_y. poldt_m2 $poldt_m. poldt_y2 $poldt_y. poldt_m3 $poldt_m. poldt_y3 $poldt_y. poldt_m4 $poldt_m. poldt_y4 $poldt_y. poldt_m5 $poldt_m. poldt_y5 $poldt_y. poldt_m6 $poldt_m. poldt_y6 $poldt_y. poldt_m7 $poldt_m. poldt_y7 $poldt_y. poldt_m8 $poldt_m. poldt_y8 $poldt_y. hibct_c hibct_c. hibdt_m1 $hibdt_m. hibdt_y1 $hibdt_y. hibdt_m2 $hibdt_m. hibdt_y2 $hibdt_y. hibdt_m3 $hibdt_m. hibdt_y3 $hibdt_y. hibdt_m4 $hibdt_m. hibdt_y4 $hibdt_y. hibdt_m5 $hibdt_m. hibdt_y5 $hibdt_y. hibdt_m6 $hibdt_m. hibdt_y6 $hibdt_y. hibdt_m7 $hibdt_m. hibdt_y7 $hibdt_y. hibdt_m8 $hibdt_m. hibdt_y8 $hibdt_y. rotct_c rotct_c. rotdt_m1 $rotdt_m. rotdt_y1 $rotdt_y. rotdt_m2 $rotdt_m. rotdt_y2 $rotdt_y. rotdt_m3 $rotdt_m. rotdt_y3 $rotdt_y. rotdt_m4 $rotdt_m. rotdt_y4 $rotdt_y. rotdt_m5 $rotdt_m. rotdt_y5 $rotdt_y. rotdt_m6 $rotdt_m. rotdt_y6 $rotdt_y. rotdt_m7 $rotdt_m. rotdt_y7 $rotdt_y. rotdt_m8 $rotdt_m. rotdt_y8 $rotdt_y. mmrct_c mmrct_c. mmrdt_t1 mmrdt_ta. mmrdt_m1 $mmrdt_m. mmrdt_y1 $mmrdt_y. mmrdt_t2 mmrdt_tb. mmrdt_m2 $mmrdt_m. mmrdt_y2 $mmrdt_y. mmrdt_t3 mmrdt_tc. mmrdt_m3 $mmrdt_m. mmrdt_y3 $mmrdt_y. mmrdt_t4 mmrdt_td. mmrdt_m4 $mmrdt_m. mmrdt_y4 $mmrdt_y. hepct_c hepct_c. hepdt_m1 $hepdt_m. hepdt_y1 $hepdt_y. hepdt_m2 $hepdt_m. hepdt_y2 $hepdt_y. hepdt_m3 $hepdt_m. hepdt_y3 $hepdt_y. hepdt_m4 $hepdt_m. hepdt_y4 $hepdt_y. hepdt_m5 $hepdt_m. hepdt_y5 $hepdt_y. hepdt_m6 $hepdt_m. hepdt_y6 $hepdt_y. hepdt_m7 $hepdt_m. hepdt_y7 $hepdt_y. hepdt_m8 $hepdt_m. hepdt_y8 $hepdt_y. varct_c varct_c. vardt_m1 $vardt_m. vardt_y1 $vardt_y. vardt_m2 $vardt_m. vardt_y2 $vardt_y. vardt_m3 $vardt_m. vardt_y3 $vardt_y. vardt_m4 $vardt_m. vardt_y4 $vardt_y. pnect_c pnect_c. pnedt_m1 $pnedt_m. pnedt_y1 $pnedt_y. pnedt_m2 $pnedt_m. pnedt_y2 $pnedt_y. pnedt_m3 $pnedt_m. pnedt_y3 $pnedt_y. pnedt_m4 $pnedt_m. pnedt_y4 $pnedt_y. tdbct_c tdbct_c. tdbdt_m1 $tdbdt_m. tdbdt_y1 $tdbdt_y. tdbdt_m2 $tdbdt_m. tdbdt_y2 $tdbdt_y. tdbdt_m3 $tdbdt_m. tdbdt_y3 $tdbdt_y. tdbdt_m4 $tdbdt_m. tdbdt_y4 $tdbdt_y. othrnt othrnt. othev01 othev01l. othev03 othev03l. othev04 othev04l. othev05 othev05l. othev06 othev06l. oth1ct_c oth1ct_c. oth1d_m1 $oth1d_m. oth1d_y1 $oth1d_y. oth1d_m2 $oth1d_m. oth1d_y2 $oth1d_y. oth1d_m3 $oth1d_m. oth1d_y3 $oth1d_y. oth1d_m4 $oth1d_m. oth1d_y4 $oth1d_y. oth1d_m5 $oth1d_m. oth1d_y5 $oth1d_y. oth1d_m6 $oth1d_m. oth1d_y6 $oth1d_y. oth3ct_c oth3ct_c. oth3d_m1 $oth3d_m. oth3d_y1 $oth3d_y. oth3d_m2 $oth3d_m. oth3d_y2 $oth3d_y. oth3d_m3 $oth3d_m. oth3d_y3 $oth3d_y. oth3d_m4 $oth3d_m. oth3d_y4 $oth3d_y. oth3d_m5 $oth3d_m. oth3d_y5 $oth3d_y. oth3d_m6 $oth3d_m. oth3d_y6 $oth3d_y. oth4ct_c oth4ct_c. oth4d_m1 $oth4d_m. oth4d_y1 $oth4d_y. oth4d_m2 $oth4d_m. oth4d_y2 $oth4d_y. oth4d_m3 $oth4d_m. oth4d_y3 $oth4d_y. oth4d_m4 $oth4d_m. oth4d_y4 $oth4d_y. oth4d_m5 $oth4d_m. oth4d_y5 $oth4d_y. oth4d_m6 $oth4d_m. oth4d_y6 $oth4d_y. oth5ct_c oth5ct_c. oth5d_m1 $oth5d_m. oth5d_y1 $oth5d_y. oth5d_m2 $oth5d_m. oth5d_y2 $oth5d_y. oth5d_m3 $oth5d_m. oth5d_y3 $oth5d_y. oth5d_m4 $oth5d_m. oth5d_y4 $oth5d_y. oth5d_m5 $oth5d_m. oth5d_y5 $oth5d_y. oth5d_m6 $oth5d_m. oth5d_y6 $oth5d_y. oth6ct_c oth6ct_c. oth6d_m1 $oth6d_m. oth6d_y1 $oth6d_y. oth6d_m2 $oth6d_m. oth6d_y2 $oth6d_y. oth6d_m3 $oth6d_m. oth6d_y3 $oth6d_y. oth6d_m4 $oth6d_m. oth6d_y4 $oth6d_y. oth6d_m5 $oth6d_m. oth6d_y5 $oth6d_y. oth6d_m6 $oth6d_m. oth6d_y6 $oth6d_y. shota1 shota1l. dtpmor dtpmor. dtpmno dtpmno. polmor polmor. polmno polmno. hibmor hibmor. hibmno hibmno. rotmor rotmor. rotmno rotmno. mmrmor mmrmor. mmrmno mmrmno. hepmor hepmor. hepmno hepmno. varmor varmor. varmno varmno. pnemor pnemor. pnemno pnemno. tdbmor tdbmor. tdbmno tdbmno. shotay shotay. dtpev dtpev. dtpeno dtpeno. polev polev. poleno poleno. hibev hibev. hibeno hibeno. rotev rotev. roteno roteno. mmrev mmrev. mmreno mmreno. hepev hepev. hepeno hepeno. varev varev. vareno vareno. pneev pneev. pneeno pneeno. tdbev tdbev. tdbeno tdbeno. shotpr shotpr. shota2 shota2l. ; proc contents data=library.nhis2000_immunize; /* Copyright 2007 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. */