/**************************************************************************/ /* PROGRAM : NISPUF96.SAS */ /* */ /* PURPOSE : THIS SAS PROGRAM CREATES A PERMANENT SAS DATASET */ /* FROM THE 1996 NIS PUBLIC USE ASCII FILE */ /* */ /* NOTES : THIS PROGRAM IS DIVIDED INTO 7 SECTIONS DESCRIBED BELOW.*/ /* */ /* SECTION A : CREATE A DIRECTORY TO COPY FILES TO AND STORE THE */ /* PERMANENT SAS DATASET CREATED BY THIS PROGRAM, */ /* E.G. C:\NISPUF96 . */ /* */ /* : COPY THE ASCII FILE CALLED NISPUF96.DAT AND THIS */ /* PROGRAM TO THE DIRECTORY CREATED. */ /* */ /* SECTION B : IDENTIFIES THE LOCATION OF THE ASCII FILE NISPUF96.DAT. */ /* */ /* SECTION C : DEFINES VARIABLE FORMATS. */ /* */ /* : USE THE STATEMENT "PROC FORMAT LIBRARY=LIBRARY" */ /* TO PERMANENTLY STORE THE FORMATS IN THE LOCATION */ /* IDENTIFIED IN THE LIBNAME STATEMENT IN SECTION A. */ /* */ /* : USE THE STATEMENT "PROC FORMAT" IF YOU DO NOT WISH */ /* TO PERMANENTLY STORE THE FORMATS. */ /* */ /* SECTION D : CREATES A PERMANENT SAS DATASET CALLED NISPUF96 */ /* IN THE DIRECTORY REFERRED TO IN THE LIBNAME "puf" */ /* STATEMENT IN SECTION A. */ /* */ /* : THE VARIABLES AND THEIR LOCATIONS IN THE ASCII FILE */ /* ARE IN THIS SECTION. */ /* */ /* SECTION E : ASSIGNS LABELS TO THE VARIABLES IN THE DATASET. */ /* */ /* SECTION F : ASSIGNS FORMATS TO VARIABLES TO PRODUCE FORMATTED */ /* FREQUENCIES */ /* */ /* SECTION G : PROC CONTENTS STATEMENT TO LIST VARIABLES IN DATASET. */ /* EXAMPLE OF PROC FREQ STATEMENTS TO PRODUCE FREQUENCIES */ /* ON THE VARIABLE AGEGRP , UNWEIGHTED AND WEIGHTED USING */ /* W0 AS WEIGHT. */ /* */ /**************************************************************************/ options ps=56 ls=90 obs= max; *----------------------------------------------------*; * A. CREATE DIRECTORY WHERE FILES ARE TO BE LOCATED *; *----------------------------------------------------*; libname puf 'c:\nispuf96'; ** "puf" REFERS TO THE DIRECTORY WHERE THE **; ** PERMANENT SAS DATASET WILL BE WRITTEN TO**; libname library 'c:\nispuf96'; ** "library" REFERS TO THE DIRECTORY WHERE **; ** PERMANENT FORMATS ARE GOING TO BE STORED **; ** COMMENT OUT THIS STATEMENT IF YOU DO NOT **; ** WANT TO STORE PERMANENT FORMATS **; *------------------------------------*; * B. NAME OF 1996 NIS PUF ASCII FILE *; *------------------------------------*; filename in 'c:\nispuf96\nispuf96.dat'; *----------------------------*; * C. VARIABLE FORMATS *; *----------------------------*; * PROC FORMAT ; ** USE THIS STATEMENT TO CREATE TEMPORARY FORMATS**; PROC FORMAT LIBRARY=LIBRARY; ** USE THIS STATEMENT TO STORE PERMANENT FORMATS **; VALUE AGEGRPF 1 = "1 19 - 23 MONTHS" 2 = "2 24 - 29 MONTHS" 3 = "3 30 - 35 MONTHS" ; VALUE ALL4SHOF . = ". MISSING" 1 = "1 YES" 2 = "2 NO" 6 = "6 DON'T KNOW" 7 = "7 REFUSED" ; VALUE CARTYP1F . = ". MISSING" 1 = "1 ALL PROVIDERS" 2 = "2 SOME BUT NOT ALL PROVIDERS" 3 = "3 NO PROVIDER/UNKNOWN" ; VALUE CARTYP2F . = ". MISSING" 1 = "1 ALL PROVIDERS" 2 = "2 SOME BUT NOT ALL PROVIDERS" 3 = "3 NO PROVIDER/UNKNOWN" ; VALUE CARTYP3F . = ". MISSING" 1 = "1 ALL PROVIDERS" 2 = "2 SOME BUT NOT ALL PROVIDERS" 3 = "3 NO PROVIDER/UNKNOWN" ; VALUE CARTYP4F . = ". MISSING" 1 = "1 ALL PROVIDERS" 2 = "2 SOME BUT NOT ALL PROVIDERS" 3 = "3 NO PROVIDER/UNKNOWN" ; VALUE CARTYP5F . = ". MISSING" 1 = "1 ALL PROVIDERS" 2 = "2 SOME BUT NOT ALL PROVIDERS" 3 = "3 NO PROVIDER/UNKNOWN" ; VALUE CEN_REGF 1 ='1 NORTHEAST' 2 ='2 MIDWEST' 3 ='3 SOUTH' 4 ='4 WEST' ; VALUE C1RF . = " . MISSING" 2 = " 2 2" 3 = " 3 3" 4 = " 4 4" 5 = " 5 5" 6 = " 6 6" 7 = " 7 7" 8 = " 8 8+ " 96 = "96 DON'T KNOW" 97 = "97 REFUSED" ; VALUE C5RF . =" . MISSING" 1 =" 1 MOTHER (STEP, FOSTER, ADOPTIVE) OR FEMALE GUARDIAN" 2 =" 2 FATHER (STEP, FOSTER, ADOPTIVE) OR MALE GUARDIAN" 3 =" 3 GRANDPARENT" 4 =" 4 OTHER FAMILY MEMBER/FRIEND" 96 ="96 DON'T KNOW" 97 ="97 REFUSED" ; VALUE CHILDNMF 1 = "1 1 CHILD" 2 = "2 2-3 CHILDREN" 3 = "3 4+ CHILDREN" 4 = "4 UNKNOWN" ; VALUE C_4313F 1 = "1 UTD 4313/SC" 2 = "2 NOT UTD 4313/ SC " 3 = "3 UTD 4313/NSC" 4 = "4 NOT UTD 4313/ NSC" 5 = "5 MISSING 4313/SC,NSC" ; VALUE C_HEPF 1 = "1 UTD HEPB/SC" 2 = "2 NOT UTD HEPB/ SC" 3 = "3 UTD HEPB/NSC" 4 = "4 NOT UTD HEPB/ NSC" 5 = "5 MISSING HEPB/SC,NSC" ; VALUE C_431F 1 = "1 UTD 431/SC" 2 = "2 NOT UTD 431/ SC " 3 = "3 UTD 431/NSC" 4 = "4 NOT UTD 431/ NSC" 5 = "5 MISSING 431/SC,NSC" ; VALUE C_DTPF 1 = "1 UTD DTP/SC" 2 = "2 NOT UTD DTP/ SC" 3 = "3 UTD DTP/NSC" 4 = "4 NOT UTD DTP/ NSC" 5 = "5 MISSING DTP/SC,NSC" ; VALUE C_POLF 1 = "1 UTD POLIO/SC" 2 = "2 NOT UTD POLIO/ SC" 3 = "3 UTD POLIO/NSC" 4 = "4 NOT UTD POLIO/ NSC" 5 = "5 MISSING POLIO/SC,NSC" ; VALUE C_MMRF 1 = "1 UTD MMR/SC" 2 = "2 NOT UTD MMR/ SC" 3 = "3 UTD MMR/NSC" 4 = "4 NOT UTD MMR/ NSC" 5 = "5 MISSING MMR/SC,NSC" ; VALUE C_HIBF 1 = "1 UTD HIB/SC" 2 = "2 NOT UTD HIB/ SC" 3 = "3 UTD HIB/NSC" 4 = "4 NOT UTD HIB/ NSC" 5 = "5 MISSING HIB/SC,NSC" ; VALUE D6RF . =". MISSING" 0 ="0 0" 1 ="1 1" 2 ="2 2" 3 ="3 3+" ; VALUE DTP_SOUF . = ". UNKNOWN" 1 = "1 SHOT RECORDS" 2 = "2 BOTH SHOT RECORDS AND RESPONDENT RECALL" 3 = "3 RESPONDENT RECALL ONLY" 6 = "6 DON'T KNOW" ; VALUE EDUC1F 1 = "1 <12 YEARS" 2 = "2 12 YEARS" 3 = "3 >12, NON COLLEGE GRADUATE" 4 = "4 COLLEGE GRADUATE" ; VALUE ENTRYF 1 = "1 YES" 2 = "2 NO" ; VALUE FULL_HEF . = ". MISSING" 1 = "1 YES" 2 = "2 NO" 6 = "6 DON'T KNOW" 7 = "7 REFUSED" ; VALUE FULL_DTF . = ". MISSING" 1 = "1 YES" 2 = "2 NO" 6 = "6 DON'T KNOW" 7 = "7 REFUSED" ; VALUE FULL_POF . = ". MISSING" 1 = "1 YES" 2 = "2 NO" 6 = "6 DON'T KNOW" 7 = "7 REFUSED" ; VALUE FULL_HIF . = ". MISSING" 1 = "1 YES" 2 = "2 NO" 6 = "6 DON'T KNOW" 7 = "7 REFUSED" ; VALUE FUL2_MMF . = ". MISSING" 1 = "1 YES" 2 = "2 NO" 6 = "6 DON'T KNOW" 7 = "7 REFUSED" ; VALUE HUTD431F 1 = "1 4:3:1:3 UTD" 2 = "2 NOT 4:3:1:3 UTD" 3 = "3 MISSING" ; VALUE INCOMERF . = " . NO ANSWER GIVEN" 3 = " 3 0 - $ 7,500" 4 = " 4 $ 7,501 - $10,000" 5 = " 5 $10,001 - $12,500" 6 = " 6 $12,501 - $15,000" 7 = " 7 $15,001 - $17,500" 8 = " 8 $17,501 - $20,000" 9 = " 9 $20,001 - $30,000" 10 = "10 $30,001 - $50,000" 11 = "11 $50,001 + " 96 = "96 DON'T KNOW" 97 = "97 REFUSED" ; VALUE ITRUEIAF 1 = " 1 CT" 2 = " 2 MA-REST OF STATE" 3 = " 3 MA-CITY OF BOSTON" 4 = " 4 ME" 5 = " 5 NH" 6 = " 6 RI" 7 = " 7 VT" 8 = " 8 NJ-REST OF STATE" 9 = " 9 NJ-CITY OF NEWARK" 10 = "10 NY-REST OF STATE" 11 = "11 NY-NYC 5 COUNTIES" 12 = "12 DISTRICT OF COLUMBIA" 13 = "13 DE" 14 = "14 MD-REST OF STATE" 15 = "15 MD-CITY OF BALTIMORE" 16 = "16 PA-REST OF STATE" 17 = "17 PA-PHILADELPHIA COUNTY" 18 = "18 VA" 19 = "19 WV" 20 = "20 AL-REST OF STATE" 21 = "21 AL-JEFFERSON COUNTY" 22 = "22 FL-REST OF STATE" 23 = "23 FL-DUVAL COUNTY" 24 = "24 FL-DADE COUNTY" 25 = "25 GA-REST OF STATE" 26 = "26 GA-FULTON/DEKALB COUNTIES" 27 = "27 KY" 28 = "28 MS" 29 = "29 NC" 30 = "30 SC" 31 = "31 TN-REST OF STATE" 32 = "32 TN-SHELBY COUNTY" 33 = "33 TN-DAVIDSON COUNTY" 34 = "34 IL-REST OF STATE" 35 = "35 IL-CITY OF CHICAGO" 36 = "36 IN-REST OF STATE" 37 = "37 IN-MARION COUNTY" 38 = "38 MI-REST OF STATE" 39 = "39 MI-CITY OF DETROIT" 40 = "40 MN" 41 = "41 OH-REST OF STATE" 42 = "42 OH-CUYAHOGA COUNTY" 43 = "43 OH-FRANKLIN COUNTY" 44 = "44 WI-REST OF STATE" 45 = "45 WI-MILWAUKEE COUNTY" 46 = "46 AR" 47 = "47 LA-REST OF STATE" 48 = "48 LA-ORLEANS PARISH" 49 = "49 NM" 50 = "50 OK" 51 = "51 TX-REST OF STATE" 52 = "52 TX-DALLAS COUNTY" 53 = "53 TX-EL PASO COUNTY" 54 = "54 TX-CITY OF HOUSTON" 55 = "55 TX-BEXAR COUNTY" 56 = "56 IA" 57 = "57 KS" 58 = "58 MO" 59 = "59 NE" 60 = "60 CO" 61 = "61 MT" 62 = "62 ND" 63 = "63 SD" 64 = "64 UT" 65 = "65 WY" 66 = "66 AZ-REST OF STATE" 67 = "67 AZ-MARICOPA COUNTY" 68 = "68 CA-REST OF STATE" 69 = "69 CA-LOS ANGELES COUNTY" 70 = "70 CA-SANTA CLARA COUNTY" 71 = "71 CA-SAN DIEGO COUNTY" 72 = "72 HI" 73 = "73 NV" 74 = "74 AK" 75 = "75 ID" 76 = "76 OR" 77 = "77 WA-REST OF STATE" 78 = "78 WA-KING COUNTY" ; VALUE I_HISPKF 1 = "1 HISPANIC" 2 = "2 NOT HISPANIC" ; VALUE I_HISPMF 1 = "1 HISPANIC" 2 = "2 NOT HISPANIC" ; VALUE IRACEKRF 1 = "1 WHITE" 2 = "2 BLACK" 3 = "3 ALL OTHER(AMERICAN INDIAN+ASIAN+OTHER)" ; VALUE IRACEMRF 1 = "1 WHITE" 2 = "2 BLACK" 3 = "3 ALL OTHER(AMERICAN INDIAN+ASIAN+OTHER)" ; VALUE INCPV1RF 1 = "1 >= 1.0 (ABOVE)" 2 = "2 < 1.0 (BELOW)" 3 = "3 UNKNOWN" ; VALUE MARITALF 1 = "1 WIDOWED/DIVORCED/SEPARATED" 2 = "2 NEVER MARRIED" 3 = "3 MARRIED" 4 = "4 DECEASED" 5 = "5 MISSING" ; VALUE MOBILF 1 = "1 MOVED FROM DIFFERENT STATE" 2 = "2 DID NOT MOVE FROM DIFFERENT STATE" ; VALUE N_PRVRF . = ". MISSING" 1 = "1 1 " 2 = "2 2 " 3 = "3 3+" ; VALUE PDATF 1 ='1 USABLE PROVIDER DATA' 2 ='2 NO USABLE PROVIDER DATA' ; VALUE PROV_FAF . = ". MISSING" 1 = "1 ALL PUBLIC FACILITIES" 2 = "2 ALL HOSPITAL FACILITIES" 3 = "3 ALL PRIVATE FACILITIES" 4 = "4 ALL MILITARY/OTHER FACILITIES" 5 = "5 MIXED(ONE OR MORE OF ABOVE CATEGORIES)" 6 = "6 TYPE OF FACILITY UNKNOWN" ; VALUE PUT4313F . = ". MISSING" 1 = "1 UTD" 0 = "0 NOT UTD" ; VALUE PUTD431F . = ". MISSING" 1 = "1 UTD" 0 = "0 NOT UTD" ; VALUE P_U12VRF . = ". MISSING" 1 = "1 UTD" 0 = "0 NOT UTD" ; VALUE P_UTD33F . = ". MISSING" 1 = "1 UTD" 0 = "0 NOT UTD" ; VALUE P_UTD43F . = ". MISSING" 1 = "1 UTD" 0 = "0 NOT UTD" ; VALUE P_UTDHEF . = ". MISSING" 1 = "1 UTD" 0 = "0 NOT UTD" ; VALUE P_UTDHIF . = ". MISSING" 1 = "1 UTD" 0 = "0 NOT UTD" ; VALUE P_UTDMMF . = ". MISSING" 1 = "1 UTD" 0 = "0 NOT UTD" ; VALUE P_UTDPOF . = ". MISSING" 1 = "1 UTD" 0 = "0 NOT UTD" ; VALUE P_UTDT3F . = ". MISSING" 1 = "1 UTD" 0 = "0 NOT UTD" ; VALUE P_UTDT4F . = ". MISSING" 1 = "1 UTD" 0 = "0 NOT UTD" ; VALUE RACEKIRF 1 = "1 HISPANIC" 2 = "2 WHITE, NON HISPANIC" 3 = "3 BLACK, NON HISPANIC" 4 = "4 ALL OTHER, NON HISPANIC" ; VALUE RACEMORF 1 = "1 HISPANIC" 2 = "2 WHITE, NON HISPANIC" 3 = "3 BLACK, NON HISPANIC" 4 = "4 ALL OTHER, NON HISPANIC" ; VALUE SEXF 1 = "1 MALE" 2 = "2 FEMALE" ; VALUE SHOTCARF 1 = "1 SHOT CARD" 2 = "2 NON SHOT CARD" ; VALUE STATEF 1 =" 1 ALABAMA" 2 =" 2 ALASKA" 4 =" 4 ARIZONA" 5 =" 5 ARKANSAS" 6 =" 6 CALIFORNIA" 8 =" 8 COLORADO" 9 =" 9 CONNECTICUT" 10 ="10 DELAWARE" 11 ="11 DIST. OF COLUMBIA" 12 ="12 FLORIDA" 13 ="13 GEORGIA" 15 ="15 HAWAII" 16 ="16 IDAHO" 17 ="17 ILLINOIS" 18 ="18 INDIANA" 19 ="19 IOWA" 20 ="20 KANSAS" 21 ="21 KENTUCKY" 22 ="22 LOUISIANA" 23 ="23 MAINE" 24 ="24 MARYLAND" 25 ="25 MASSACHUSETTS" 26 ="26 MICHIGAN" 27 ="27 MINNESOTA" 28 ="28 MISSISSIPPI" 29 ="29 MISSOURI" 30 ="30 MONTANA" 31 ="31 NEBRASKA" 32 ="32 NEVADA" 33 ="33 NEW HAMPSHIRE" 34 ="34 NEW JERSEY" 35 ="35 NEW MEXICO" 36 ="36 NEW YORK" 37 ="37 NORTH CAROLINA" 38 ="38 NORTH DAKOTA" 39 ="39 OHIO" 40 ="40 OKLAHOMA" 41 ="41 OREGON" 42 ="42 PENNSYLVANIA" 44 ="44 RHODE ISLAND" 45 ="45 SOUTH CAROLINA" 46 ="46 SOUTH DAKOTA" 47 ="47 TENNESSEE" 48 ="48 TEXAS" 49 ="49 UTAH" 50 ="50 VERMONT" 51 ="51 VIRGINIA" 53 ="53 WASHINGTON" 54 ="54 WEST VIRGINIA" 55 ="55 WISCONSIN" 56 ="56 WYOMING" ; RUN; *----------------------------------*; * D. CREATES PERMANENT SAS DATASET *; *----------------------------------*; data puf.nispuf96; infile in lrecl=1087 missover; input SEQNUMC $ 0001 - 0006 SEQNUMHH $ 0007 - 0011 HY_WGT 0012 - 0021 .5 W0 0022 - 0031 .5 YEAR 0032 - 0035 PDAT 0036 - 0036 ALL4SHOT 0037 - 0037 C_431 0038 - 0038 C_4313 0039 - 0039 C_DTP 0040 - 0040 C_HEP 0041 - 0041 C_HIB 0042 - 0042 C_MMR 0043 - 0043 C_POL 0044 - 0044 DTP_SOUR 0045 - 0045 FUL2_MMR 0046 - 0046 FULL_DTP 0047 - 0047 FULL_HEP 0048 - 0048 FULL_HIB 0049 - 0049 FULL_POL 0050 - 0050 HUTD4313 0051 - 0051 SHOTCARD 0052 - 0052 AGEGRP 0053 - 0053 C1R 0054 - 0055 C5R 0056 - 0057 CEN_REG 0058 - 0058 CHILDNM 0059 - 0059 EDUC1 0060 - 0060 ENTRY 0061 - 0061 INCPOV1R 0062 - 0062 INCOMER 0063 - 0064 I_HISP_K 0065 - 0065 I_HISP_M 0066 - 0066 I_RACEKR 0067 - 0067 I_RACEMR 0068 - 0068 MARITAL 0069 - 0069 MOBIL 0070 - 0070 RACEKIDR 0071 - 0071 RACEMOMR 0072 - 0072 SEX 0073 - 0073 ITRUEIAP 0074 - 0075 STATE 0076 - 0077 D6R 0078 - 0078 DISPCODE 0079 - 0080 N_PRVR 0081 - 0081 CARTYP1 0082 - 0082 CARTYP2 0083 - 0083 CARTYP3 0084 - 0084 CARTYP4 0085 - 0085 CARTYP5 0086 - 0086 PROV_FAC 0087 - 0087 P_UTD431 0088 - 0088 PUTD4313 0089 - 0089 PUT43133 0090 - 0090 P_UTD331 0091 - 0091 P_U12VRC 0092 - 0092 P_UTDHEP 0093 - 0093 P_UTDHIB 0094 - 0094 P_UTDMCV 0095 - 0095 P_UTDMMX 0096 - 0096 P_UTDPOL 0097 - 0097 P_UTDTP3 0098 - 0098 P_UTDTP4 0099 - 0099 P_NUMDHB 0100 - 0100 P_NUMDTA 0101 - 0101 P_NUMDTP 0102 - 0102 P_NUMHEP 0103 - 0103 P_NUMHIB 0104 - 0104 P_NUMMMR 0105 - 0105 P_NUMMMX 0106 - 0106 P_NUMPOL 0107 - 0107 P_NUMRB 0108 - 0108 P_NUMVRC 0109 - 0109 VB11 $ 0110 - 0139 VB12 $ 0140 - 0169 VB13 $ 0170 - 0199 VB21 $ 0200 - 0229 VB22 $ 0230 - 0259 VB23 $ 0260 - 0289 VB31 $ 0290 - 0319 VB32 $ 0320 - 0349 VB33 $ 0350 - 0379 VB41 $ 0380 - 0409 VB42 $ 0410 - 0439 VB43 $ 0440 - 0469 VB51 $ 0470 - 0499 VB52 $ 0500 - 0529 VB53 $ 0530 - 0559 DDTAP1 0560 - 0563 DDTAP2 0564 - 0567 DDTAP3 0568 - 0571 DDTAP4 0572 - 0575 DDTAP5 0576 - 0579 DDTAP6 0580 - 0583 DDTAP7 0584 - 0587 DDTAP8 0588 - 0591 DDTP1 0592 - 0595 DDTP2 0596 - 0599 DDTP3 0600 - 0603 DDTP4 0604 - 0607 DDTP5 0608 - 0611 DDTP6 0612 - 0615 DDTP7 0616 - 0619 DDTP8 0620 - 0623 DDTPHB1 0624 - 0627 DDTPHB2 0628 - 0631 DDTPHB3 0632 - 0635 DDTPHB4 0636 - 0639 DDTPHB5 0640 - 0643 DDTPHB6 0644 - 0647 DDTPHB7 0648 - 0651 DDTPHB8 0652 - 0655 DHEPB1 0656 - 0659 DHEPB2 0660 - 0663 DHEPB3 0664 - 0667 DHEPB4 0668 - 0671 DHEPB5 0672 - 0675 DHEPB6 0676 - 0679 DHEPB7 0680 - 0683 DHEPB8 0684 - 0687 DHIB1 0688 - 0691 DHIB2 0692 - 0695 DHIB3 0696 - 0699 DHIB4 0700 - 0703 DHIB5 0704 - 0707 DHIB6 0708 - 0711 DHIB7 0712 - 0715 DHIB8 0716 - 0719 DMMR1 0720 - 0723 DMMR2 0724 - 0727 DMMR3 0728 - 0731 DMMR4 0732 - 0735 DMMRX1 0736 - 0739 DMMRX2 0740 - 0743 DMMRX3 0744 - 0747 DMMRX4 0748 - 0751 DMP1 0752 - 0755 DMP2 0756 - 0759 DMP3 0760 - 0763 DMP4 0764 - 0767 DMPRB1 0768 - 0771 DMPRB2 0772 - 0775 DMPRB3 0776 - 0779 DMPRB4 0780 - 0783 DMS1 0784 - 0787 DMS2 0788 - 0791 DMS3 0792 - 0795 DMS4 0796 - 0799 DMSMP1 0800 - 0803 DMSMP2 0804 - 0807 DMSMP3 0808 - 0811 DMSMP4 0812 - 0815 DMSRB1 0816 - 0819 DMSRB2 0820 - 0823 DMSRB3 0824 - 0827 DMSRB4 0828 - 0831 DPOLIO1 0832 - 0835 DPOLIO2 0836 - 0839 DPOLIO3 0840 - 0843 DPOLIO4 0844 - 0847 DPOLIO5 0848 - 0851 DPOLIO6 0852 - 0855 DPOLIO7 0856 - 0859 DPOLIO8 0860 - 0863 DRB1 0864 - 0867 DRB2 0868 - 0871 DRB3 0872 - 0875 DRB4 0876 - 0879 DRB5 0880 - 0883 DRB6 0884 - 0887 DRB7 0888 - 0891 DRB8 0892 - 0895 DVRC1 0896 - 0899 DVRC2 0900 - 0903 DVRC3 0904 - 0907 DVRC4 0908 - 0911 DHB1_AGE 0912 - 0913 DHB2_AGE 0914 - 0915 DHB3_AGE 0916 - 0917 DHB4_AGE 0918 - 0919 DHB5_AGE 0920 - 0921 DHB6_AGE 0922 - 0923 DHB7_AGE 0924 - 0925 DHB8_AGE 0926 - 0927 DTA1_AGE 0928 - 0929 DTA2_AGE 0930 - 0931 DTA3_AGE 0932 - 0933 DTA4_AGE 0934 - 0935 DTA5_AGE 0936 - 0937 DTA6_AGE 0938 - 0939 DTA7_AGE 0940 - 0941 DTA8_AGE 0942 - 0943 DTP1_AGE 0944 - 0945 DTP2_AGE 0946 - 0947 DTP3_AGE 0948 - 0949 DTP4_AGE 0950 - 0951 DTP5_AGE 0952 - 0953 DTP6_AGE 0954 - 0955 DTP7_AGE 0956 - 0957 DTP8_AGE 0958 - 0959 HEP1_AGE 0960 - 0961 HEP2_AGE 0962 - 0963 HEP3_AGE 0964 - 0965 HEP4_AGE 0966 - 0967 HEP5_AGE 0968 - 0969 HEP6_AGE 0970 - 0971 HEP7_AGE 0972 - 0973 HEP8_AGE 0974 - 0975 HIB1_AGE 0976 - 0977 HIB2_AGE 0978 - 0979 HIB3_AGE 0980 - 0981 HIB4_AGE 0982 - 0983 HIB5_AGE 0984 - 0985 HIB6_AGE 0986 - 0987 HIB7_AGE 0988 - 0989 HIB8_AGE 0990 - 0991 MMR1_AGE 0992 - 0993 MMR2_AGE 0994 - 0995 MMR3_AGE 0996 - 0997 MMR4_AGE 0998 - 0999 MMX1_AGE 1000 - 1001 MMX2_AGE 1002 - 1003 MMX3_AGE 1004 - 1005 MMX4_AGE 1006 - 1007 MP1_AGE 1008 - 1009 MP2_AGE 1010 - 1011 MP3_AGE 1012 - 1013 MP4_AGE 1014 - 1015 MPR1_AGE 1016 - 1017 MPR2_AGE 1018 - 1019 MPR3_AGE 1020 - 1021 MPR4_AGE 1022 - 1023 MS1_AGE 1024 - 1025 MS2_AGE 1026 - 1027 MS3_AGE 1028 - 1029 MS4_AGE 1030 - 1031 MSM1_AGE 1032 - 1033 MSM2_AGE 1034 - 1035 MSM3_AGE 1036 - 1037 MSM4_AGE 1038 - 1039 MSR1_AGE 1040 - 1041 MSR2_AGE 1042 - 1043 MSR3_AGE 1044 - 1045 MSR4_AGE 1046 - 1047 POL1_AGE 1048 - 1049 POL2_AGE 1050 - 1051 POL3_AGE 1052 - 1053 POL4_AGE 1054 - 1055 POL5_AGE 1056 - 1057 POL6_AGE 1058 - 1059 POL7_AGE 1060 - 1061 POL8_AGE 1062 - 1063 RB1_AGE 1064 - 1065 RB2_AGE 1066 - 1067 RB3_AGE 1068 - 1069 RB4_AGE 1070 - 1071 RB5_AGE 1072 - 1073 RB6_AGE 1074 - 1075 RB7_AGE 1076 - 1077 RB8_AGE 1078 - 1079 VRC1_AGE 1080 - 1081 VRC2_AGE 1082 - 1083 VRC3_AGE 1084 - 1085 VRC4_AGE 1086 - 1087 ; *-------------------------------*; * E. ASSIGN LABELS TO VARIABLES *; *-------------------------------*; label AGEGRP = "Age category of child (Recode) " ALL4SHOT = "4:3:1:3 up-to-date (HH report)" C1R = "Number of people living in the household (Recode)" C5R = "Relationship of respondent to child (Recode) " CARTYP1 = "Child's providers offer routine well care" CARTYP2 = "Child's providers offer sick/emergency visits" CARTYP3 = "Child's providers offer vaccination visits" CARTYP4 = "Child's providers offer other services" CARTYP5 = "Child's providers offer WIC program/services" CEN_REG = "Census Region based on state " CHILDNM = "Number of children less than 18 years in HH (Recode) " C_431 = "Household report of 4:3:1 up-to-date by shot card use " C_4313 = "Household report of 4:3:1:3 up-to-date by shot card use " C_DTP = "Household report of 4+ DTP up-to-date by shot card use" C_HEP = "Household report of 3+ Hepatitis B up-to-date by shot card use" C_HIB = "Household report of 3+ HIB up-to-date by shot card use" C_MMR = "Household report of 1+ Measles-Containing Vaccine up-to-date by shot card use" C_POL = "Household report of 3+ POLIO up-to-date by shot card use" D6R = "Number of vaccination providers identified by respondent (Recode)" DDTAP1 = "Age in days of PROVIDER-REPORTED DTaP (marked) shot #1 " DDTAP2 = "Age in days of PROVIDER-REPORTED DTaP (marked) shot #2 " DDTAP3 = "Age in days of PROVIDER-REPORTED DTaP (marked) shot #3 " DDTAP4 = "Age in days of PROVIDER-REPORTED DTaP (marked) shot #4 " DDTAP5 = "Age in days of PROVIDER-REPORTED DTaP (marked) shot #5 " DDTAP6 = "Age in days of PROVIDER-REPORTED DTaP (marked) shot #6 " DDTAP7 = "Age in days of PROVIDER-REPORTED DTaP (marked) shot #7 " DDTAP8 = "Age in days of PROVIDER-REPORTED DTaP (marked) shot #8 " DDTP1 = "Age in days of PROVIDER-REPORTED DTP shot (ALL types including DT) #1 " DDTP2 = "Age in days of PROVIDER-REPORTED DTP shot (ALL types including DT) #2 " DDTP3 = "Age in days of PROVIDER-REPORTED DTP shot (ALL types including DT) #3 " DDTP4 = "Age in days of PROVIDER-REPORTED DTP shot (ALL types including DT) #4 " DDTP5 = "Age in days of PROVIDER-REPORTED DTP shot (ALL types including DT) #5 " DDTP6 = "Age in days of PROVIDER-REPORTED DTP shot (ALL types including DT) #6 " DDTP7 = "Age in days of PROVIDER-REPORTED DTP shot (ALL types including DT) #7 " DDTP8 = "Age in days of PROVIDER-REPORTED DTP shot (ALL types including DT) #8 " DDTPHB1 = "Age in days of PROVIDER-REPORTED DTP/Hib shot (ALL types) #1 " DDTPHB2 = "Age in days of PROVIDER-REPORTED DTP/Hib shot (ALL types) #2 " DDTPHB3 = "Age in days of PROVIDER-REPORTED DTP/Hib shot (ALL types) #3 " DDTPHB4 = "Age in days of PROVIDER-REPORTED DTP/Hib shot (ALL types) #4 " DDTPHB5 = "Age in days of PROVIDER-REPORTED DTP/Hib shot (ALL types) #5 " DDTPHB6 = "Age in days of PROVIDER-REPORTED DTP/Hib shot (ALL types) #6 " DDTPHB7 = "Age in days of PROVIDER-REPORTED DTP/Hib shot (ALL types) #7 " DDTPHB8 = "Age in days of PROVIDER-REPORTED DTP/Hib shot (ALL types) #8 " DHB1_AGE = "Age in months of PROVIDER-REPORTED DTP/Hib (All types) shot #1 " DHB2_AGE = "Age in months of PROVIDER-REPORTED DTP/Hib (All types) shot #2 " DHB3_AGE = "Age in months of PROVIDER-REPORTED DTP/Hib (All types) shot #3 " DHB4_AGE = "Age in months of PROVIDER-REPORTED DTP/Hib (All types) shot #4 " DHB5_AGE = "Age in months of PROVIDER-REPORTED DTP/Hib (All types) shot #5 " DHB6_AGE = "Age in months of PROVIDER-REPORTED DTP/Hib (All types) shot #6 " DHB7_AGE = "Age in months of PROVIDER-REPORTED DTP/Hib (All types) shot #7 " DHB8_AGE = "Age in months of PROVIDER-REPORTED DTP/Hib (All types) shot #8 " DHEPB1 = "Age in days of PROVIDER-REPORTED HEPATITIS B (all types) shot #1 " DHEPB2 = "Age in days of PROVIDER-REPORTED HEPATITIS B (all types) shot #2 " DHEPB3 = "Age in days of PROVIDER-REPORTED HEPATITIS B (all types) shot #3 " DHEPB4 = "Age in days of PROVIDER-REPORTED HEPATITIS B (all types) shot #4 " DHEPB5 = "Age in days of PROVIDER-REPORTED HEPATITIS B (all types) shot #5 " DHEPB6 = "Age in days of PROVIDER-REPORTED HEPATITIS B (all types) shot #6 " DHEPB7 = "Age in days of PROVIDER-REPORTED HEPATITIS B (all types) shot #7 " DHEPB8 = "Age in days of PROVIDER-REPORTED HEPATITIS B (all types) shot #8 " DHIB1 = "Age in days of PROVIDER-REPORTED Hib shot (all types) #1 " DHIB2 = "Age in days of PROVIDER-REPORTED Hib shot (all types) #2 " DHIB3 = "Age in days of PROVIDER-REPORTED Hib shot (all types) #3 " DHIB4 = "Age in days of PROVIDER-REPORTED Hib shot (all types) #4 " DHIB5 = "Age in days of PROVIDER-REPORTED Hib shot (all types) #5 " DHIB6 = "Age in days of PROVIDER-REPORTED Hib shot (all types) #6 " DHIB7 = "Age in days of PROVIDER-REPORTED Hib shot (all types) #7 " DHIB8 = "Age in days of PROVIDER-REPORTED Hib shot (all types) #8 " DISPCODE = "NIS provider record-check Disposition Code" DMMR1 = "Age in days of PROVIDER-REPORTED MEASLES-CONTAINING VACCINE shot #1 " DMMR2 = "Age in days of PROVIDER-REPORTED MEASLES-CONTAINING VACCINE shot #2 " DMMR3 = "Age in days of PROVIDER-REPORTED MEASLES-CONTAINING VACCINE shot #3 " DMMR4 = "Age in days of PROVIDER-REPORTED MEASLES-CONTAINING VACCINE shot #4 " DMMRX1 = "Age in days of PROVIDER-REPORTED MMR shot #1 " DMMRX2 = "Age in days of PROVIDER-REPORTED MMR shot #2 " DMMRX3 = "Age in days of PROVIDER-REPORTED MMR shot #3 " DMMRX4 = "Age in days of PROVIDER-REPORTED MMR shot #4 " DMP1 = "Age in days of PROVIDER-REPORTED Mumps shot #1 " DMP2 = "Age in days of PROVIDER-REPORTED Mumps shot #2 " DMP3 = "Age in days of PROVIDER-REPORTED Mumps shot #3 " DMP4 = "Age in days of PROVIDER-REPORTED Mumps shot #4 " DMPRB1 = "Age in days of PROVIDER-REPORTED Mumps/Rubella shot #1 " DMPRB2 = "Age in days of PROVIDER-REPORTED Mumps/Rubella shot #2 " DMPRB3 = "Age in days of PROVIDER-REPORTED Mumps/Rubella shot #3 " DMPRB4 = "Age in days of PROVIDER-REPORTED Mumps/Rubella shot #4 " DMS1 = "Age in days of PROVIDER-REPORTED Measles shot #1 " DMS2 = "Age in days of PROVIDER-REPORTED Measles shot #2 " DMS3 = "Age in days of PROVIDER-REPORTED Measles shot #3 " DMS4 = "Age in days of PROVIDER-REPORTED Measles shot #4 " DMSMP1 = "Age in days of PROVIDER-REPORTED Measles/Mumps shot #1 " DMSMP2 = "Age in days of PROVIDER-REPORTED Measles/Mumps shot #2 " DMSMP3 = "Age in days of PROVIDER-REPORTED Measles/Mumps shot #3 " DMSMP4 = "Age in days of PROVIDER-REPORTED Measles/Mumps shot #4 " DMSRB1 = "Age in days of PROVIDER-REPORTED Measles/Rubella #1 " DMSRB2 = "Age in days of PROVIDER-REPORTED Measles/Rubella #2 " DMSRB3 = "Age in days of PROVIDER-REPORTED Measles/Rubella #3 " DMSRB4 = "Age in days of PROVIDER-REPORTED Measles/Rubella #4 " DPOLIO1 = "Age in days of PROVIDER-REPORTED POLIO shot (all types) #1 " DPOLIO2 = "Age in days of PROVIDER-REPORTED POLIO shot (all types) #2 " DPOLIO3 = "Age in days of PROVIDER-REPORTED POLIO shot (all types) #3 " DPOLIO4 = "Age in days of PROVIDER-REPORTED POLIO shot (all types) #4 " DPOLIO5 = "Age in days of PROVIDER-REPORTED POLIO shot (all types) #5 " DPOLIO6 = "Age in days of PROVIDER-REPORTED POLIO shot (all types) #6 " DPOLIO7 = "Age in days of PROVIDER-REPORTED POLIO shot (all types) #7 " DPOLIO8 = "Age in days of PROVIDER-REPORTED POLIO shot (all types) #8 " DRB1 = "Age in days of PROVIDER-REPORTED Rubella shot #1 " DRB2 = "Age in days of PROVIDER-REPORTED Rubella shot #2 " DRB3 = "Age in days of PROVIDER-REPORTED Rubella shot #3 " DRB4 = "Age in days of PROVIDER-REPORTED Rubella shot #4 " DRB5 = "Age in days of PROVIDER-REPORTED Rubella shot #5 " DRB6 = "Age in days of PROVIDER-REPORTED Rubella shot #6 " DRB7 = "Age in days of PROVIDER-REPORTED Rubella shot #7 " DRB8 = "Age in days of PROVIDER-REPORTED Rubella shot #8 " DTA1_AGE = "Age in months of PROVIDER-REPORTED DTaP shot #1 " DTA2_AGE = "Age in months of PROVIDER-REPORTED DTaP shot #2 " DTA3_AGE = "Age in months of PROVIDER-REPORTED DTaP shot #3 " DTA4_AGE = "Age in months of PROVIDER-REPORTED DTaP shot #4 " DTA5_AGE = "Age in months of PROVIDER-REPORTED DTaP shot #5 " DTA6_AGE = "Age in months of PROVIDER-REPORTED DTaP shot #6 " DTA7_AGE = "Age in months of PROVIDER-REPORTED DTaP shot #7 " DTA8_AGE = "Age in months of PROVIDER-REPORTED DTaP shot #8 " DTP1_AGE = "Age in months of PROVIDER-REPORTED DTP (all types including DT) shot #1 " DTP2_AGE = "Age in months of PROVIDER-REPORTED DTP (all types including DT) shot #2 " DTP3_AGE = "Age in months of PROVIDER-REPORTED DTP (all types including DT) shot #3 " DTP4_AGE = "Age in months of PROVIDER-REPORTED DTP (all types including DT) shot #4 " DTP5_AGE = "Age in months of PROVIDER-REPORTED DTP (all types including DT) shot #5 " DTP6_AGE = "Age in months of PROVIDER-REPORTED DTP (all types including DT) shot #6 " DTP7_AGE = "Age in months of PROVIDER-REPORTED DTP (all types including DT) shot #7 " DTP8_AGE = "Age in months of PROVIDER-REPORTED DTP (all types including DT) shot #8 " DTP_SOUR = "Shot card used for DTP reporting " DVRC1 = "Age in days of PROVIDER-REPORTED VARICELLA shot #1 " DVRC2 = "Age in days of PROVIDER-REPORTED VARICELLA shot #2 " DVRC3 = "Age in days of PROVIDER-REPORTED VARICELLA shot #3 " DVRC4 = "Age in days of PROVIDER-REPORTED VARICELLA shot #4 " EDUC1 = "Education of mother categories " ENTRY = "Child lives in state with Hepatitis B state entry law for day care/head start (1996-1997 school year) " FUL2_MMR = "Household report of 1+ MMR at any age " FULL_DTP = "Household report of 4+ DTP" FULL_HEP = "Household report of 3+ Hepatitis B" FULL_HIB = "Household report of 3+ Hib" FULL_POL = "Household report of 3+ Polio" HEP1_AGE = "Age in months of PROVIDER-REPORTED HEPATITIS B (all types) shot #1 " HEP2_AGE = "Age in months of PROVIDER-REPORTED HEPATITIS B (all types) shot #2 " HEP3_AGE = "Age in months of PROVIDER-REPORTED HEPATITIS B (all types) shot #3 " HEP4_AGE = "Age in months of PROVIDER-REPORTED HEPATITIS B (all types) shot #4 " HEP5_AGE = "Age in months of PROVIDER-REPORTED HEPATITIS B (all types) shot #5 " HEP6_AGE = "Age in months of PROVIDER-REPORTED HEPATITIS B (all types) shot #6 " HEP7_AGE = "Age in months of PROVIDER-REPORTED HEPATITIS B (all types) shot #7 " HEP8_AGE = "Age in months of PROVIDER-REPORTED HEPATITIS B (all types) shot #8 " HIB1_AGE = "Age in months of PROVIDER-REPORTED Hib (all types) shot #1 " HIB2_AGE = "Age in months of PROVIDER-REPORTED Hib (all types) shot #2 " HIB3_AGE = "Age in months of PROVIDER-REPORTED Hib (all types) shot #3 " HIB4_AGE = "Age in months of PROVIDER-REPORTED Hib (all types) shot #4 " HIB5_AGE = "Age in months of PROVIDER-REPORTED Hib (all types) shot #5 " HIB6_AGE = "Age in months of PROVIDER-REPORTED Hib (all types) shot #6 " HIB7_AGE = "Age in months of PROVIDER-REPORTED Hib (all types) shot #7 " HIB8_AGE = "Age in months of PROVIDER-REPORTED Hib (all types) shot #8 " HUTD4313 = "Household report of 4:3:1:3 UTD (up-to-date)" HY_WGT = "Modified-Poststratification (HH) weight for child" INCPOV1R = "Poverty status(Recode) " INCOMER = "Family income categories (Recode) " ITRUEIAP = "IAP area of current residence " I_HISP_K = "Hispanic origin of child " I_HISP_M = "Hispanic origin of mother " I_RACEKR = "Race of Child (Recode)" I_RACEMR = "Race of mother (Recode)" MARITAL = "Marital status of mother categories " MMR1_AGE = "Age in months of PROVIDER-REPORTED MEASLES-CONTAINING VACCINE shot #1 " MMR2_AGE = "Age in months of PROVIDER-REPORTED MEASLES-CONTAINING VACCINE shot #2 " MMR3_AGE = "Age in months of PROVIDER-REPORTED MEASLES-CONTAINING VACCINE shot #3 " MMR4_AGE = "Age in months of PROVIDER-REPORTED MEASLES-CONTAINING VACCINE shot #4 " MMX1_AGE = "Age in months of PROVIDER-REPORTED MMR shot #1 " MMX2_AGE = "Age in months of PROVIDER-REPORTED MMR shot #2 " MMX3_AGE = "Age in months of PROVIDER-REPORTED MMR shot #3 " MMX4_AGE = "Age in months of PROVIDER-REPORTED MMR shot #4 " MOBIL = "Geographic mobility status: state of residence of child at birth versus current state of residence " MP1_AGE = "Age in months of PROVIDER-REPORTED Mumps shot #1 " MP2_AGE = "Age in months of PROVIDER-REPORTED Mumps shot #2 " MP3_AGE = "Age in months of PROVIDER-REPORTED Mumps shot #3 " MP4_AGE = "Age in months of PROVIDER-REPORTED Mumps shot #4 " MPR1_AGE = "Age in months of PROVIDER-REPORTED Mumps/Rubella shot #1 " MPR2_AGE = "Age in months of PROVIDER-REPORTED Mumps/Rubella shot #2 " MPR3_AGE = "Age in months of PROVIDER-REPORTED Mumps/Rubella shot #3 " MPR4_AGE = "Age in months of PROVIDER-REPORTED Mumps/Rubella shot #4 " MS1_AGE = "Age in months of PROVIDER-REPORTED measles-only shot #1 " MS2_AGE = "Age in months of PROVIDER-REPORTED measles-only shot #2 " MS3_AGE = "Age in months of PROVIDER-REPORTED measles-only shot #3 " MS4_AGE = "Age in months of PROVIDER-REPORTED measles-only shot #4 " MSM1_AGE = "Age in months of PROVIDER-REPORTED Measles/Mumps shot #1 " MSM2_AGE = "Age in months of PROVIDER-REPORTED Measles/Mumps shot #2 " MSM3_AGE = "Age in months of PROVIDER-REPORTED Measles/Mumps shot #3 " MSM4_AGE = "Age in months of PROVIDER-REPORTED Measles/Mumps shot #4 " MSR1_AGE = "Age in months of PROVIDER-REPORTED Measles/Rubella shot #1 " MSR2_AGE = "Age in months of PROVIDER-REPORTED Measles/Rubella shot #2 " MSR3_AGE = "Age in months of PROVIDER-REPORTED Measles/Rubella shot #3 " MSR4_AGE = "Age in months of PROVIDER-REPORTED Measles/Rubella shot #4 " N_PRVR = "Number of providers responding with vaccination data for child (Recode)" PDAT = "Child has adequate provider data " POL1_AGE = "Age on months of PROVIDER-REPORTED Polio (all types) shot # 1 " POL2_AGE = "Age on months of PROVIDER-REPORTED Polio (all types) shot # 2 " POL3_AGE = "Age on months of PROVIDER-REPORTED Polio (all types) shot # 3 " POL4_AGE = "Age on months of PROVIDER-REPORTED Polio (all types) shot # 4 " POL5_AGE = "Age on months of PROVIDER-REPORTED Polio (all types) shot # 5 " POL6_AGE = "Age on months of PROVIDER-REPORTED Polio (all types) shot # 6 " POL7_AGE = "Age on months of PROVIDER-REPORTED Polio (all types) shot # 7 " POL8_AGE = "Age on months of PROVIDER-REPORTED Polio (all types) shot # 8 " PROV_FAC = "Provider facility type" PUT43133 = "UTD (up-to-date) flag for provider 4:3:1:3:3" PUTD4313 = "UTD (up-to-date) flag for provider 4:3:1:3" P_NUMDHB = "Number of DTP/HIB combination shots (all types), as determined from provider information. Does not include shots reported by the provider(s) as occurring after the RDD interview date. " P_NUMDTA = "Number of DTaP (marked) shots, as determined from provider information. Does not include shots reported by the provider(s) as occurring after the RDD interview date. " P_NUMDTP = "Number of DTP shots (all types including DT), as determined from provider information. Does not include shots reported by the provider(s) as occurring after the RDD interview date. " P_NUMHEP = "Number of Hepatitis B (all types) shots, as determined from provider information. Does not include shots reported by the provider(s) as occurring after the RDD interview date. " P_NUMHIB = "Number of Hib (all types) shots, as determined from provider information. Does not include shots reported by the provider(s) as occurring after the RDD interview date. " P_NUMMMR = "Number of MCV (measles-containing vaccine) shots, as determined from provider information. Does not include shots reported by the provider(s) as occurring after the RDD interview date. " P_NUMMMX = "Number of true MMR (not including Measles-only shots), as determined from provider information. Does not include shots reported by the provider(s) as occurring after the RDD interview date. " P_NUMPOL = "Number of POLIO (all types) shots, as determined from provider information. Does not include shots reported by the provider(s) as occurring after the RDD interview date. " P_NUMRB = "Number of Rubella shots, as determined from provider information. Does not include shots reported by the provider(s) as occurring after the RDD interview date. " P_NUMVRC = "Number of Varicella (chicken pox) shots, as determined from provider information. Does not include shots reported by the provider(s) as occurring after the RDD interview date. " P_U12VRC = "UTD (up-to-date) flag for provider 1+ Varicella at 12+ months " P_UTD331 = "UTD (up-to-date) flag for provider 3:3:1" P_UTD431 = "UTD (up-to-date) flag for provider 4:3:1" P_UTDHEP = "UTD (up-to-date) flag for provider 3+ Hepatitis B " P_UTDHIB = "UTD (up-to-date) flag for provider 3+ Hib " P_UTDMCV = "UTD (up-to-date) flag for provider 1+ MCV" P_UTDMMX = "UTD (up-to-date) flag for provider 1+ MMR (not including any measles-only shots) " P_UTDPOL = "UTD (up-to-date) flag for provider 3+ Polio " P_UTDTP3 = "UTD (up-to-date) flag for provider 3+ DTP " P_UTDTP4 = "UTD (up-to-date) flag for provider 4+ DTP " RACEKIDR = "Race/Ethnicity of Child (Recode)" RACEMOMR = "Race/Ethnicity of Mother (Recode)" RB1_AGE = "Age in months of PROVIDER-REPORTED Rubella shot #1 " RB2_AGE = "Age in months of PROVIDER-REPORTED Rubella shot #2 " RB3_AGE = "Age in months of PROVIDER-REPORTED Rubella shot #3 " RB4_AGE = "Age in months of PROVIDER-REPORTED Rubella shot #4 " RB5_AGE = "Age in months of PROVIDER-REPORTED Rubella shot #5 " RB6_AGE = "Age in months of PROVIDER-REPORTED Rubella shot #6 " RB7_AGE = "Age in months of PROVIDER-REPORTED Rubella shot #7 " RB8_AGE = "Age in months of PROVIDER-REPORTED Rubella shot #8 " SEQNUMC = "UNIQUE Child IDENTIFIER" SEQNUMHH = "UNIQUE Household IDENTIFIER" SEX = "Gender of child " SHOTCARD = "Shot card use flag " STATE = "State of residence (State FIPS Code) " VB11 = "Verbatim text for 1st other shot (additional shot of type not pre-printed on Provider Survey form) reported by 1st provider. " VB12 = "Verbatim text for 1st other shot (additional shot of type not pre-printed on Provider Survey form) reported by 2nd provider. " VB13 = "Verbatim text for 1st other shot (additional shot of type not pre-printed on Provider Survey form) reported by 3rd provider. " VB21 = "Verbatim text for 2nd other shot (additional shot of type not pre-printed on Provider Survey form) reported by 1st provider. " VB22 = "Verbatim text for 2nd other shot (additional shot of type not pre-printed on Provider Survey form) reported by 2nd provider. " VB23 = "Verbatim text for 2nd other shot (additional shot of type not pre-printed on Provider Survey form) reported by 3rd provider. " VB31 = "Verbatim text for 3rd other shot (additional shot of type not pre-printed on Provider Survey form) reported by 1st provider. " VB32 = "Verbatim text for 3rd other shot (additional shot of type not pre-printed on Provider Survey form) reported by 2nd provider. " VB33 = "Verbatim text for 3rd other shot (additional shot of type not pre-printed on Provider Survey form) reported by 3rd provider. " VB41 = "Verbatim text for 4th other shot (additional shot of type not pre-printed on Provider Survey form) reported by 1st provider. " VB42 = "Verbatim text for 4th other shot (additional shot of type not pre-printed on Provider Survey form) reported by 2nd provider. " VB43 = "Verbatim text for 4th other shot (additional shot of type not pre-printed on Provider Survey form) reported by 3rd provider. " VB51 = "Verbatim text for 5th other shot (additional shot of type not pre-printed on Provider Survey form) reported by 1st provider. " VB52 = "Verbatim text for 5th other shot (additional shot of type not pre-printed on Provider Survey form) reported by 2nd provider. " VB53 = "Verbatim text for 5th other shot (additional shot of type not pre-printed on Provider Survey form) reported by 3rd provider. " VRC1_AGE = "Age in months of PROVIDER-REPORTED Varicella shot #1 " VRC2_AGE = "Age in months of PROVIDER-REPORTED Varicella shot #2 " VRC3_AGE = "Age in months of PROVIDER-REPORTED Varicella shot #3 " VRC4_AGE = "Age in months of PROVIDER-REPORTED Varicella shot #4 " W0 = "Overall vaccination history nonresponse adjusted weight for children with adequate provider data " YEAR = "Year of interview" ; *------------------------------------------------------------------*; * F. ASSIGN FORMATS TO VARIABLES TO PRODUCE FORMATTED *; * FREQUENCIES. *; * COMMENT OUT THIS SECTION IF YOU WANT UNFORMATTED FREQUENCIES. *; *------------------------------------------------------------------*; *========ASSIGN FORMATS=========*; format AGEGRP AGEGRPF. ALL4SHOT ALL4SHOF. CARTYP1 CARTYP1F. CARTYP2 CARTYP2F. CARTYP3 CARTYP3F. CARTYP4 CARTYP4F. CARTYP5 CARTYP5F. CEN_REG CEN_REGF. C1R C1RF. C5R C5RF. CHILDNM CHILDNMF. C_4313 C_4313F. C_HEP C_HEPF. C_431 C_431F. C_DTP C_DTPF. C_POL C_POLF. C_MMR C_MMRF. C_HIB C_HIBF. D6R D6RF. DTP_SOUR DTP_SOUF. EDUC1 EDUC1F. ENTRY ENTRYF. FULL_HEP FULL_HEF. FULL_DTP FULL_DTF. FULL_POL FULL_POF. FULL_HIB FULL_HIF. FUL2_MMR FUL2_MMF. HUTD4313 HUTD431F. INCPOV1R INCPV1RF. INCOMER INCOMERF. ITRUEIAP ITRUEIAF. I_HISP_K I_HISPKF. I_HISP_M I_HISPMF. I_RACEKR IRACEKRF. I_RACEMR IRACEMRF. INCPOV1R INCPV1RF. MARITAL MARITALF. MOBIL MOBILF. N_PRVR N_PRVRF. PDAT PDATF. PROV_FAC PROV_FAF. P_U12VRC P_U12VRF. PUT43133 PUT4313F. PUTD4313 PUTD431F. P_UTD331 P_UTD33F. P_UTD431 P_UTD43F. P_UTDHEP P_UTDHEF. P_UTDHIB P_UTDHIF. P_UTDMMX P_UTDMMF. P_UTDMCV P_UTDMMF. P_UTDPOL P_UTDPOF. P_UTDTP3 P_UTDT3F. P_UTDTP4 P_UTDT4F. RACEKIDR RACEKIRF. RACEMOMR RACEMORF. SEX SEXF. SHOTCARD SHOTCARF. STATE STATEF. ; RUN; *-----------------------------------*; * G. PROC CONTENTS AND FREQUENCIES ; *-----------------------------------*; proc contents data=puf.nispuf96; RUN; proc freq data=puf.nispuf96; tables agegrp; title1 '1996 NIS PUBLIC USE FILE'; title2 'UNWEIGHTED FREQUENCIES'; RUN; proc freq data=puf.nispuf96; tables agegrp; weight w0; title1 '1996 NIS PUBLIC USE FILE'; title2 'WEIGHTED FREQUENCIES'; RUN;