*options obs=100 ; options nocenter ; /*------------------------------------------------ by Jean Roth Wed Jul 5 10:26:01 EDT 2006 This program reads the 2000 Public Use Microdata Samples 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:\ ; ** Use the \*.zip to read all states ; **FILENAME datafile pipe "unzip -p /homes/data/PUMS/2000/1pct/\*zip \*dat "; ** Use the statement below to read one state, Alabama ; FILENAME datafile pipe "unzip -p /homes/data/PUMS/2000/1pct/all_Alabama.zip \*dat "; * The following line should contain the name of the SAS dataset ; %let dataset = pums00 ; DATA library.&dataset ; RETAIN rectype serialno sample state region division puma5 puma1 msacmsa5 msapmsa5 msacmsa1 msapmsa1 areatyp5 areatyp1 totpuma5 lndpuma5 totpuma1 lndpuma1 subsampl hweight persons unittype hsub haug vacstat vacstata tenure tenurea bldgsz bldgsza yrbuilt yrbuilta yrmoved yrmoveda rooms roomsa bedrms bedrmsa cplumb cplumba ckitch ckitcha phone phonea fuel fuela vehicl vehicla busines businesa acres acresa agsales agsalesa elec eleca gas gasa water watera oil oila rent renta meals mealsa mortg1 mortg1a mrt1amt mrt1amta mortg2 mortg2a mrt2amt mrt2amta taxincl taxincla taxamt taxamta insincl insincla insamt insamta condfee condfeea value valuea mhloan mhloana mhcost mhcosta hht p65 p18 npf noc nrc psf paoc parc sval smoc smocapi srnt grent grapi fnf hhl lngi wif empstat workexp hinc finc ; INFILE datafile LRECL = 20000 ; attrib rectype length=$1 label="Record Type"; attrib serialno length=5 label="Housing/Group Quarters (GQ) Unit Serial Number"; attrib sample length=3 label="Sample Identifier"; attrib state length=3 label="State Code"; attrib region length=3 label="Region Code"; attrib division length=3 label="Division Code"; attrib puma5 length=4 label="Public Use Microdata Area Code (PUMA)"; attrib puma1 length=4 label="Super Public Use Microdata Area Code (SuperPUMA)"; attrib msacmsa5 length=4 label="Metropolitan Area (MA): MSA/CMSA for PUMA"; attrib msapmsa5 length=4 label="Metropolitan Area: MSA/PMSA for PUMA"; attrib msacmsa1 length=4 label="Metropolitan Area: MSA/CMSA for SuperPUMA"; attrib msapmsa1 length=4 label="Metropolitan Area: MSA/PMSA for SuperPUMA"; attrib areatyp5 length=3 label="Metropolitan Area: PUMA Relationship to MA"; attrib areatyp1 length=3 label="Metropolitan Area: SuperPUMA Relationship to MA"; attrib totpuma5 length=8 label="Total Area of PUMA"; attrib lndpuma5 length=8 label="Land Area of PUMA"; attrib totpuma1 length=8 label="Total Area of SuperPUMA"; attrib lndpuma1 length=8 label="Land Area of SuperPUMA"; attrib subsampl length=3 label="Subsample number"; attrib hweight length=4 label="Housing unit weight"; attrib persons length=3 label="Number of person records following this housing record"; attrib unittype length=3 label="Type of unit"; attrib hsub length=3 label="Substitution Flag"; attrib haug length=3 label="Augmentation Flag"; attrib vacstat length=3 label="Vacancy Status"; attrib vacstata length=3 label="Vacancy Status Allocation Flag"; attrib tenure length=3 label="Home Ownership"; attrib tenurea length=3 label="Home Ownership Allocation Flag"; attrib bldgsz length=3 label="Size of Building"; attrib bldgsza length=3 label="Size of Building Allocation Flag"; attrib yrbuilt length=3 label="Year Building Built"; attrib yrbuilta length=3 label="Year Building Built Allocation Flag"; attrib yrmoved length=3 label="Year Moved In"; attrib yrmoveda length=3 label="Year Moved In Allocation Flag"; attrib rooms length=3 label="Number of Rooms"; attrib roomsa length=3 label="Number of Rooms Allocation Flag"; attrib bedrms length=3 label="Number of Bedrooms"; attrib bedrmsa length=3 label="Number of Bedrooms Allocation Flag"; attrib cplumb length=3 label="Complete Plumbing Facilities"; attrib cplumba length=3 label="Complete Plumbing Facilities Allocation Flag"; attrib ckitch length=3 label="Complete Kitchen Facilities"; attrib ckitcha length=3 label="Complete Kitchen Facilities Allocation Flag"; attrib phone length=3 label="Telephone Availability"; attrib phonea length=3 label="Telephone Availability Allocation Flag"; attrib fuel length=3 label="Heating Fuel"; attrib fuela length=3 label="Heating Fuel Allocation Flag"; attrib vehicl length=3 label="Number of Vehicles Available"; attrib vehicla length=3 label="Number of Vehicles Available Allocation Flag"; attrib busines length=3 label="Commercial Business on Property"; attrib businesa length=3 label="Commercial Business on Property Allocation Flag"; attrib acres length=3 label="Acreage"; attrib acresa length=3 label="Acreage Allocation Flag"; attrib agsales length=3 label="Sales of Agricultural Products in 1999"; attrib agsalesa length=3 label="Sales of Agricultural Products in 1999 Allocation Flag"; attrib elec length=4 label="Cost of Electricity (annual)"; attrib eleca length=3 label="Cost of Electricity (annual) Allocation Flag"; attrib gas length=4 label="Cost of Gas (annual)"; attrib gasa length=3 label="Cost of Gas (annual) Allocation Flag"; attrib water length=4 label="Cost of Water and Sewer (annual)"; attrib watera length=3 label="Cost of Water and Sewer (annual) Allocation Flag"; attrib oil length=4 label="Cost of Oil, Kerosene, or Wood (annual)"; attrib oila length=3 label="Cost of Oil, Kerosene, or Wood (annual) Allocation Flag"; attrib rent length=4 label="Monthly Rent"; attrib renta length=3 label="Monthly Rent Allocation Flag"; attrib meals length=3 label="Meals Included in Rent"; attrib mealsa length=3 label="Meals Included in Rent Allocation Flag"; attrib mortg1 length=3 label="Mortgage Status"; attrib mortg1a length=3 label="Mortgage Status Allocation Flag"; attrib mrt1amt length=4 label="Mortgage Payment (monthly amount)"; attrib mrt1amta length=3 label="Mortgage Payment (monthly amount) Allocation Flag"; attrib mortg2 length=3 label="Second Mortgage Status"; attrib mortg2a length=3 label="Second Mortgage Status Allocation Flag"; attrib mrt2amt length=4 label="Second Mortgage Payment (monthly amount)"; attrib mrt2amta length=3 label="Second Mortgage Payment (monthly amount) Allocation Flag"; attrib taxincl length=3 label="Property Tax Status"; attrib taxincla length=3 label="Property Tax Status Allocation Flag"; attrib taxamt length=3 label="Property Tax Amount (annual)"; attrib taxamta length=3 label="Property Tax Amount (annual) Allocation Flag"; attrib insincl length=3 label="Property Insurance Status"; attrib insincla length=3 label="Property Insurance Status Allocation Flag"; attrib insamt length=4 label="Property Insurance Amount (annual)"; attrib insamta length=3 label="Property Insurance Amount (annual) Allocation Flag"; attrib condfee length=4 label="Condominium Fee (monthly)"; attrib condfeea length=3 label="Condominium Fee (monthly) Allocation Flag"; attrib value length=3 label="Property Value"; attrib valuea length=3 label="Property Value Allocation Flag"; attrib mhloan length=3 label="Mobile Home Loan Status"; attrib mhloana length=3 label="Mobile Home Loan Status Allocation Flag"; attrib mhcost length=4 label="Mobile Home Costs"; attrib mhcosta length=3 label="Mobile Home Costs Allocation Flag"; attrib hht length=3 label="Household/Family Type"; attrib p65 length=3 label="Number of people 65 years and over in household"; attrib p18 length=3 label="Number of people under 18 years in household"; attrib npf length=3 label="Number of people in family"; attrib noc length=3 label="Number of own children under 18 years in household"; attrib nrc length=3 label="Number of related children under 18 years in household"; attrib psf length=3 label="Presence of Subfamily in Household"; attrib paoc length=3 label="Presence and Age of Own Children under 18 years"; attrib parc length=3 label="Presence and Age of Related Children under 18 years"; attrib sval length=3 label="Specified Value Indicator"; attrib smoc length=4 label="Selected Monthly Owner Costs"; attrib smocapi length=3 label="Selected Monthly Owner Costs as a Percentage of Household Income"; attrib srnt length=3 label="Specified Rent Indicator"; attrib grent length=4 label="Gross Rent"; attrib grapi length=3 label="Gross Rent as a Percentage of Household Income"; attrib fnf length=3 label="Farm/Nonfarm Recode"; attrib hhl length=3 label="Household Language"; attrib lngi length=3 label="Linguistic Isolation"; attrib wif length=3 label="Number of workers in family"; attrib empstat length=3 label="Family Type and Employment Status"; attrib workexp length=3 label="Family Type and Work Experience of Householder"; attrib hinc length=5 label="Household Total Income in 1999"; attrib finc length=5 label="Family Total Income in 1999"; attrib rectype length=$1 label="Record Type"; attrib serialno length=5 label="Housing/Group Quarters (GQ) Unit Serial Number"; attrib pnum length=3 label="Person Sequence Number"; attrib paug length=3 label="Augmented Person Flag"; attrib ddp length=3 label="Data-defined Person Flag"; attrib pweight length=4 label="Person Weight"; attrib relate length=3 label="Relationship"; attrib relatea length=3 label="Relationship Allocation Flag"; attrib oc length=3 label="Own Child Indicator"; attrib rc length=3 label="Related Child Indicator"; attrib paocf length=3 label="Presence and Age of Own Children, Females"; attrib sex length=3 label="Sex"; attrib sexa length=3 label="Sex Allocation Flag"; attrib age length=3 label="Age"; attrib agea length=3 label="Age Allocation Flag"; attrib hispan length=3 label="Hispanic or Latino Origin"; attrib hispana length=3 label="Hispanic or Latino Origin Allocation Flag"; attrib numrace length=3 label="Number of Major Race Groups Marked"; attrib white length=3 label="White recode"; attrib black length=3 label="Black or African American recode"; attrib aian length=3 label="American Indian and Alaska Native recode"; attrib asian length=3 label="Asian recode"; attrib nhpi length=3 label="Native and Other Pacific Islander recode"; attrib other length=3 label="Some other race recode"; attrib race1 length=3 label="Race Recode 1"; attrib race2 length=3 label="Race Recode 2"; attrib race3 length=3 label="Race Recode 3"; attrib racea length=3 label="Race Allocation Flag"; attrib marstat length=3 label="Marital Status"; attrib marstata length=3 label="Marital Status Allocation Flag"; attrib msp length=3 label="Married, Spouse Present Recode"; attrib sfn length=3 label="Subfamily Number for this person"; attrib sfrel length=3 label="Subfamily Relationship"; attrib enroll length=3 label="School Enrollment, Attended since February 1, 2000"; attrib enrolla length=3 label="School Enrollment: Attended since February 1, 2000 Allocation Flag"; attrib grade length=3 label="School Enrollment: Grade Level Attending"; attrib gradea length=3 label="School Enrollment: Grade Level Attending Allocation Flag"; attrib educ length=3 label="Educational Attainment"; attrib educa length=3 label="Educational Attainment Allocation Flag"; attrib ancfrst1 length=3 label="Ancestry Code 1 for 1% file"; attrib ancscnd1 length=3 label="Ancestry Code 2 for 1% file"; attrib anca length=3 label="Ancestry Allocation Flag"; attrib ancr length=3 label="Ancestry Recode"; attrib speak length=3 label="Non-English Language"; attrib speaka length=3 label="Non-English Language Allocation Flag"; attrib lang1 length=3 label="Language Spoken for 1% file"; attrib langa length=3 label="Language Spoken Allocation Flag"; attrib engabil length=3 label="English Ability"; attrib engabila length=3 label="English Ability Allocation Flag"; attrib pob1 length=3 label="Place of Birth for 1% file"; attrib poba length=3 label="Place of Birth Allocation Flag"; attrib citizen length=3 label="Citizenship Status"; attrib citizena length=3 label="Citizenship Status Allocation Flag"; attrib yr2us length=4 label="Year of Entry to United States"; attrib yr2usa length=3 label="Year of Entry to United States Allocation Flag"; attrib mob length=3 label="Residence 5 Years Ago"; attrib moba length=3 label="Residence 5 Years Ago Allocation Flag"; attrib migst1 length=3 label="Migration State or Foreign Country Code for 1% file"; attrib migsta length=3 label="Migration State or Foreign County Code Allocation Flag"; attrib migpuma5 length=4 label="Migration PUMA"; attrib migpuma1 length=4 label="Migration SuperPUMA"; attrib migarea5 length=3 label="Migration PUMA Relationship to MA"; attrib migarea1 length=3 label="Migration SuperPUMA Relationship to MA"; attrib migcma5 length=4 label="Migration MA: MSA/CMSA for PUMA"; attrib migcma1 length=4 label="Migration MA: MSA/CMSA for SuperPUMA"; attrib migpma5 length=4 label="Migration MA: MSA/PMSA for PUMA"; attrib migpma1 length=4 label="Migration MA: MSA/PMSA for SuperPUMA"; attrib sensory length=3 label="Sensory Disability"; attrib sensorya length=3 label="Sensory Disability Allocation Flag"; attrib physcl length=3 label="Physical Disability"; attrib physcla length=3 label="Physical Disability Allocation Flag"; attrib mental length=3 label="Mental Disability"; attrib mentala length=3 label="Mental Disability Allocation Flag"; attrib slfcare length=3 label="Self-Care Disability"; attrib slfcarea length=3 label="Self-Care Disability Allocation Flag"; attrib abgo length=3 label="Able to Go Out Disability"; attrib abgoa length=3 label="Able to Go Out Disability Allocation Flag"; attrib abwork length=3 label="Employment Disability"; attrib abworka length=3 label="Employment Disability Allocation Flag"; attrib disable length=3 label="Disability Recode"; attrib grandc length=3 label="Presence of Grandchildren under 18 years"; attrib grandca length=3 label="Presence of Grandchildren under 18 years Allocation Flag"; attrib rspnsbl length=3 label="Responsible for Grandchildren"; attrib rspnsbla length=3 label="Responsible for Grandchildren Allocation Flag"; attrib howlong length=3 label="Length of Responsibility for Grandchildren"; attrib howlonga length=3 label="Length of Responsibility for Grandchildren Allocation Flag"; attrib miltary length=3 label="Military Service"; attrib miltarya length=3 label="Military Service Allocation Flag"; attrib vps1 length=3 label="Veteran's Period of Service 1: On active duty April 1995 or later"; attrib vps2 length=3 label="Veteran's Period of Service 2: On active duty August 1990 to March 1995 (including Persian Gulf War)"; attrib vps3 length=3 label="Veteran's Period of Service 3: On active duty September 1980 to July 1990"; attrib vps4 length=3 label="Veteran's Period of Service 4: On active duty May 1975 to August 1980"; attrib vps5 length=3 label="Veteran's Period of Service 5: On active duty during the Vietnam Era (August 1964 to April 1975)"; attrib vps6 length=3 label="Veteran's Period of Service 6: On active duty February 1955 to July 1964"; attrib vps7 length=3 label="Veteran's Period of Service 7: On active duty during the Korean War (June 1950 to January 1955)"; attrib vps8 length=3 label="Veteran's Period of Service 8: On active duty during World War II (September 1940 to July 1947)"; attrib vps9 length=3 label="Veteran's Period of Service 9: On active duty any other time"; attrib vpsa length=3 label="Veteran's Period of Service Allocation Flag"; attrib milyrs length=3 label="Years of Military Service"; attrib milyrsa length=3 label="Years of Military Service Allocation Flag"; attrib vpsr length=3 label="Veteran's Period of Service Recode"; attrib esr length=3 label="Employment Status Recode"; attrib esra length=3 label="Employment Status Allocation Flag"; attrib esp length=3 label="Employment Status of Parent(s)"; attrib powst1 length=3 label="Place of Work State or Foreign Country Code for 1% file"; attrib powsta length=3 label="Place of Work State or Foreign Country Code Allocation Flag"; attrib powpuma5 length=4 label="Place of Work PUMA"; attrib powpuma1 length=4 label="Place of Work SuperPUMA"; attrib powarea5 length=3 label="Place of Work PUMA Relationship to MA"; attrib powarea1 length=3 label="Place of Work SuperPUMA Relationship to MA"; attrib powcma5 length=4 label="Place of Work MA: MSA/CMSA for PUMA"; attrib powcma1 length=4 label="Place of Work MA: MSA/CMSA for SuperPUMA"; attrib powpma5 length=4 label="Place of Work MA: MSA/PMSA for PUMA"; attrib powpma1 length=4 label="Place of Work MA: MSA/PMSA for SuperPUMA"; attrib trvmns length=3 label="Means of Transportation to Work"; attrib trvmnsa length=3 label="Means of Transportation to Work Allocation Flag"; attrib carpool length=3 label="Vehicle Occupancy"; attrib carpoola length=3 label="Vehicle Occupancy Allocation Flag"; attrib lvtime length=3 label="Time Leaving for Work"; attrib lvtimea length=3 label="Time Leaving for Work Allocation Flag"; attrib trvtime length=3 label="Travel Time to Work"; attrib trvtimea length=3 label="Travel Time to Work Allocation Flag"; attrib layoff length=3 label="Layoff from Job"; attrib absent length=3 label="Absent from Work"; attrib recall length=3 label="Return-to-Work Recall"; attrib lookwrk length=3 label="Looking for Work"; attrib backwrk length=3 label="Back to Work"; attrib lastwrk length=3 label="Year Last Worked"; attrib lastwrka length=3 label="Year Last Worked Allocation Flag"; attrib indcen length=3 label="Industry (Census)"; attrib indcena length=3 label="Industry (Census) Allocation Flag"; attrib indnaics length=$8 label="Industry (NAICS)"; attrib occcen length=3 label="Occupation (Census) for 5% file"; attrib occcena length=3 label="Occupation (Census) Allocation Flag"; attrib occsoc length=$7 label="Occupation (SOC) for 5% file"; attrib clwkr length=3 label="Class of Worker"; attrib clwkra length=3 label="Class of Worker Allocation Flag"; attrib wrklyr length=3 label="Worked in 1999"; attrib wrklyra length=3 label="Worked in 1999 Allocation Flag"; attrib weeks length=3 label="Weeks Worked in 1999"; attrib weeksa length=3 label="Weeks Worked in 1999 Allocation Flag"; attrib hours length=3 label="Hours per Week in 1999"; attrib hoursa length=3 label="Hours per Week in 1999 Allocation Flag"; attrib incws length=4 label="Wage/Salary Income in 1999"; attrib incwsa length=3 label="Wage/Salary Income in 1999 Allocation Flag"; attrib incse length=4 label="Self-Employment Income in 1999"; attrib incsea length=3 label="Self-Employment Income in 1999 Allocation Flag"; attrib incint length=4 label="Interest Income in 1999"; attrib incinta length=3 label="Interest Income in 1999 Allocation Flag"; attrib incss length=4 label="Social Security Income in 1999"; attrib incssa length=3 label="Social Security Income in 1999 Allocation Flag"; attrib incssi length=4 label="Supplemental Security Income in 1999"; attrib incssia length=3 label="Supplemental Security Income in 1999 Allocation Flag"; attrib incpa length=4 label="Public Assistance Income in 1999"; attrib incpaa length=3 label="Public Assistance Income in 1999 Allocation Flag"; attrib incret length=4 label="Retirement Income in 1999"; attrib increta length=3 label="Retirement Income in 1999 Allocation Flag"; attrib incoth length=4 label="Other Income in 1999"; attrib incotha length=3 label="Other Income in 1999 Allocation Flag"; attrib inctot length=5 label="Person's Total Income in 1999"; attrib inctota length=3 label="Person's Total Income in 1999 Allocation Flag"; attrib earns length=5 label="Person's Total Earnings in 1999"; attrib poverty length=3 label="Person's Poverty Status"; INPUT @1 rectype $1. @; /* Hold the data line */ if rectype = "H" then do; /* HOUSEHOLD RECORDS */ INPUT @1 rectype $1. @2 serialno 7. @9 sample 1. @10 state 2. @12 region 1. @13 division 1. @14 puma5 5. @19 puma1 5. @24 msacmsa5 4. @28 msapmsa5 4. @32 msacmsa1 4. @36 msapmsa1 4. @40 areatyp5 2. @42 areatyp1 2. @44 totpuma5 14. @58 lndpuma5 14. @72 totpuma1 14. @86 lndpuma1 14. @100 subsampl 2. @102 hweight 4. @106 persons 2. @108 unittype 1. @109 hsub 1. @110 haug 1. @111 vacstat 1. @112 vacstata 1. @113 tenure 1. @114 tenurea 1. @115 bldgsz 2. @117 bldgsza 1. @118 yrbuilt 1. @119 yrbuilta 1. @120 yrmoved 1. @121 yrmoveda 1. @122 rooms 1. @123 roomsa 1. @124 bedrms 1. @125 bedrmsa 1. @126 cplumb 1. @127 cplumba 1. @128 ckitch 1. @129 ckitcha 1. @130 phone 1. @131 phonea 1. @132 fuel 1. @133 fuela 1. @134 vehicl 1. @135 vehicla 1. @136 busines 1. @137 businesa 1. @138 acres 1. @139 acresa 1. @140 agsales 1. @141 agsalesa 1. @142 elec 4. @146 eleca 1. @147 gas 4. @151 gasa 1. @152 water 4. @156 watera 1. @157 oil 4. @161 oila 1. @162 rent 4. @166 renta 1. @167 meals 1. @168 mealsa 1. @169 mortg1 1. @170 mortg1a 1. @171 mrt1amt 5. @176 mrt1amta 1. @177 mortg2 1. @178 mortg2a 1. @179 mrt2amt 5. @184 mrt2amta 1. @185 taxincl 1. @186 taxincla 1. @187 taxamt 2. @189 taxamta 1. @190 insincl 1. @191 insincla 1. @192 insamt 4. @196 insamta 1. @197 condfee 4. @201 condfeea 1. @202 value 2. @204 valuea 1. @205 mhloan 1. @206 mhloana 1. @207 mhcost 5. @212 mhcosta 1. @213 hht 1. @214 p65 2. @216 p18 2. @218 npf 2. @220 noc 2. @222 nrc 2. @224 psf 1. @225 paoc 1. @226 parc 1. @227 sval 1. @228 smoc 5. @233 smocapi 3. @236 srnt 1. @237 grent 4. @241 grapi 3. @244 fnf 1. @245 hhl 1. @246 lngi 1. @247 wif 1. @248 empstat 1. @249 workexp 2. @251 hinc 8. @259 finc 8. ; if persons=0 then output; /* If there are no person in the household then print the record */ end; else if rectype = "P" then do; /* PERSON RECORDS */ INPUT @1 rectype $1. @2 serialno 7. @9 pnum 2. @11 paug 1. @12 ddp 1. @13 pweight 4. @17 relate 2. @19 relatea 1. @20 oc 1. @21 rc 1. @22 paocf 1. @23 sex 1. @24 sexa 1. @25 age 2. @27 agea 1. @28 hispan 2. @30 hispana 1. @31 numrace 1. @32 white 1. @33 black 1. @34 aian 1. @35 asian 1. @36 nhpi 1. @37 other 1. @38 race1 1. @39 race2 2. @41 race3 2. @43 racea 1. @44 marstat 1. @45 marstata 1. @46 msp 1. @47 sfn 1. @48 sfrel 1. @49 enroll 1. @50 enrolla 1. @51 grade 1. @52 gradea 1. @53 educ 2. @55 educa 1. @56 ancfrst1 3. @59 ancscnd1 3. @62 anca 1. @63 ancr 1. @64 speak 1. @65 speaka 1. @66 lang1 3. @69 langa 1. @70 engabil 1. @71 engabila 1. @72 pob1 3. @75 poba 1. @76 citizen 1. @77 citizena 1. @78 yr2us 4. @82 yr2usa 1. @83 mob 1. @84 moba 1. @85 migst1 3. @88 migsta 1. @89 migpuma5 5. @94 migpuma1 5. @99 migarea5 2. @101 migarea1 2. @103 migcma5 4. @107 migcma1 4. @111 migpma5 4. @115 migpma1 4. @119 sensory 1. @120 sensorya 1. @121 physcl 1. @122 physcla 1. @123 mental 1. @124 mentala 1. @125 slfcare 1. @126 slfcarea 1. @127 abgo 1. @128 abgoa 1. @129 abwork 1. @130 abworka 1. @131 disable 1. @132 grandc 1. @133 grandca 1. @134 rspnsbl 1. @135 rspnsbla 1. @136 howlong 1. @137 howlonga 1. @138 miltary 1. @139 miltarya 1. @140 vps1 1. @141 vps2 1. @142 vps3 1. @143 vps4 1. @144 vps5 1. @145 vps6 1. @146 vps7 1. @147 vps8 1. @148 vps9 1. @149 vpsa 1. @150 milyrs 1. @151 milyrsa 1. @152 vpsr 2. @154 esr 1. @155 esra 1. @156 esp 1. @157 powst1 3. @160 powsta 1. @161 powpuma5 5. @166 powpuma1 5. @171 powarea5 2. @173 powarea1 2. @175 powcma5 4. @179 powcma1 4. @183 powpma5 4. @187 powpma1 4. @191 trvmns 2. @193 trvmnsa 1. @194 carpool 1. @195 carpoola 1. @196 lvtime 3. @199 lvtimea 1. @200 trvtime 3. @203 trvtimea 1. @204 layoff 1. @205 absent 1. @206 recall 1. @207 lookwrk 1. @208 backwrk 1. @209 lastwrk 1. @210 lastwrka 1. @211 indcen 3. @214 indcena 1. @215 indnaics $8. @223 occcen 3. @226 occcena 1. @227 occsoc $7. @234 clwkr 1. @235 clwkra 1. @236 wrklyr 1. @237 wrklyra 1. @238 weeks 2. @240 weeksa 1. @241 hours 2. @243 hoursa 1. @244 incws 6. @250 incwsa 1. @251 incse 6. @257 incsea 1. @258 incint 6. @264 incinta 1. @265 incss 5. @270 incssa 1. @271 incssi 5. @276 incssia 1. @277 incpa 5. @282 incpaa 1. @283 incret 6. @289 increta 1. @290 incoth 6. @296 incotha 1. @297 inctot 7. @304 inctota 1. @305 earns 7. @312 poverty 3. ; output; end; drop rectype; *See the codebook for more detail; PROC FORMAT cntlout=library.fpums00; /* The PROC FORMAT statement will store the formats in a sas data set called fpums00 To use the stored formats in a subsequent program, include something like this: proc format cntlin=library.fpums00; PROC freq; tables pesex ; format pesex P135L.; For more information, consult the SAS Procudures Guide section of PROC FORMAT */ ; VALUE $rectype (default=32) "H" = "Housing or Group Quarters Unit" ; VALUE sample (default=32) 2 = "1% sample" ; VALUE state (default=32) 72 = "Puerto Rico" ; VALUE region (default=32) 1 = "Northeast" 2 = "Midwest" 3 = "South" 4 = "West" ; VALUE division (default=32) 1 = "New England" 2 = "Middle Atlantic" 3 = "East North Central" 4 = "West North Central" 5 = "South Atlantic" 6 = "East South Central" 7 = "West South Central" 8 = "Mountain" 9 = "Pacific" ; VALUE msacmsan (default=32) 9997 = "Mixed MSA/CMSA and nonmetropolitan ter" /* ritory */ 9998 = "2 or more MSAs/CMSAs" 9999 = "Not in metropolitan area" ; VALUE msapmsan (default=32) 9997 = "Mixed MSA/PMSA and nonmetropolitan ter" /* ritory */ 9998 = "2 or more MSAs/PMSAs" 9999 = "Not in metropolitan area" ; VALUE areatypn (default=32) 11 = "Contains only metropolitan territory i" /* nside central city (MSA part of fully-identified MSA) */ 12 = "Contains only metropolitan territory o" /* utside central city (MSA part of fully-identified MSA) */ 13 = "Contains only metropolitan territory b" /* oth inside and outside central city (MSA part of fully identified MSA) */ 14 = "Contains an entire MSA (and no other t" /* erritory) */ 21 = "Contains only metropolitan territory i" /* nside central city (MSA part of partially-identified MSA) */ 22 = "Contains only metropolitan territory o" /* utside central city (MSA part of partially-identified MSA) */ 23 = "Contains only metropolitan territory b" /* oth inside and outside central city (MSA part of partially-identified MSA) */ 31 = "Contains only metropolitan territory i" /* nside central city (PMSA part of fully-identified PMSA and fully-identified CMSA) */ 32 = "Contains only metropolitan territory o" /* utside central city (PMSA part of fully-identified PMSA and fully-identified CMSA) */ 33 = "Contains only metropolitan territory b" /* oth inside and outside central city (PMSA part of fully-identified PMSA and fully-identified CMSA) */ 34 = "Contains an entire PMSA (and no other " /* territory) (PMSA belongs to a fully-identified CMSA) */ 41 = "Contains only metropolitan territory i" /* nside central city (PMSA part of fully-identified PMSA and partially-identified CMSA) */ 42 = "Contains only metropolitan territory o" /* utside central city (PMSA part of fully-identified PMSA and partially-identified CMSA) */ 43 = "Contains only metropolitan territory b" /* oth inside and outside central city (PMSA part of fully-identified PMSA and partially-identified CMSA) */ 44 = "Contains an entire PMSA (and no other " /* territory) (PMSA belongs to a partially-identified CMSA) */ 51 = "Contains only metropolitan territory i" /* nside central city (PMSA part of partially-identified PMSA and partially-identified CMSA) */ 52 = "Contains only metropolitan territory o" /* utside central city (PMSA part of partially-identified PMSA and partially-identified CMSA) */ 53 = "Contains only metropolitan territory b" /* oth inside and outside central city (PMSA part of partially-identified PMSA and partially-identified CMSA) */ 70 = "Contains both metropolitan and nonmetr" /* opolitan territory */ 80 = "Contains only metropolitan territory i" /* n two or more partial and/or entire MSAs/PMSAs/CMSAs */ 90 = "Contains only nonmetropolitan territor" /* y */ ; VALUE persons (default=32) 1 = "Householder living alone or any person" /* in group quarters */ ; VALUE unittype (default=32) 1 = "Institutional group quarters" 2 = "Noninstitutional group quarters" ; VALUE hsub (default=32) 1 = "Substituted" ; VALUE haug (default=32) 1 = "Augmented" ; VALUE vacstat (default=32) 1 = "For rent" 2 = "For sale only" 3 = "Rented or sold, not occupied" 4 = "For seasonal, recreational or occasion" /* al use */ 5 = "For migrant workers" 6 = "Other vacant" ; VALUE vacstata (default=32) 1 = "Allocated" ; VALUE tenure (default=32) 1 = "Owned by you or someone in this househ" /* old with a mortgage or loan */ 2 = "Owned by you or someone in this househ" /* old free and clear (without a mortgage or loan) */ 3 = "Rented for cash rent" 4 = "Occupied without payment of cash rent" ; VALUE tenurea (default=32) 1 = "Allocated" ; VALUE bldgsz (default=32) 01 = "A mobile home" 02 = "A one-family house detached from any o" /* ther house */ 03 = "A one-family house attached to one or " /* more houses */ 04 = "A building with 2 apartments" 05 = "A building with 3 or 4 apartments" 06 = "A building with 5 to 9 apartments" 07 = "A building with 10 to 19 apartments" 08 = "A building with 20 to 49 apartments" 09 = "A building with 50 or more apartments" 10 = "Boat, RV, van, etc." ; VALUE bldgsza (default=32) 1 = "Allocated" ; VALUE yrbuilt (default=32) 1 = "1999 to 2000" 2 = "1995 to 1998" 3 = "1990 to 1994" 4 = "1980 to 1989" 5 = "1970 to 1979" 6 = "1960 to 1969" 7 = "1950 to 1959" 8 = "1940 to 1949" 9 = "1939 or earlier" ; VALUE yrbuilta (default=32) 1 = "Allocated" ; VALUE yrmoved (default=32) 1 = "1999 or 2000" 2 = "1995 to 1998" 3 = "1990 to 1994" 4 = "1980 to 1989" 5 = "1970 to 1979" 6 = "1969 or earlier" ; VALUE yrmoveda (default=32) 1 = "Allocated" ; VALUE rooms (default=32) 9 = "9 or more rooms" ; VALUE roomsa (default=32) 1 = "Allocated" ; VALUE bedrms (default=32) 5 = "5 or more bedrooms" ; VALUE bedrmsa (default=32) 1 = "Allocated" ; VALUE cplumb (default=32) 1 = "Yes, have all three facilites" 2 = "No" ; VALUE cplumba (default=32) 1 = "Allocated" ; VALUE ckitch (default=32) 1 = "Yes, have all three facilites" 2 = "No" ; VALUE ckitcha (default=32) 1 = "Allocated" ; VALUE phone (default=32) 1 = "Yes" 2 = "No" ; VALUE phonea (default=32) 1 = "Allocated" ; VALUE fuel (default=32) 1 = "Gas: from underground pipes serving ne" /* ighborhood */ 2 = "Gas: bottled, tank, or LP" 3 = "Electricity" 4 = "Fuel oil, kerosene, etc." 5 = "Coal or coke" 6 = "Wood" 7 = "Solar energy" 8 = "Other fuel" 9 = "No fuel used" ; VALUE fuela (default=32) 1 = "Allocated" ; VALUE vehicl (default=32) 6 = "6 or more vehicles" ; VALUE vehicla (default=32) 1 = "Allocated" ; VALUE busines (default=32) 1 = "Yes" 2 = "No" ; VALUE businesa (default=32) 1 = "Allocated" ; VALUE acres (default=32) 1 = "Less than 1 acre" 2 = "1.0 to 9.9 acres" 3 = "10 acres or more" ; VALUE acresa (default=32) 1 = "Allocated" ; VALUE agsales (default=32) 1 = "$1 to $999" 2 = "$1,000 to $2,499" 3 = "$2,500 to $4,999" 4 = "$5,000 to $9,999" 5 = "$10,000 or more" ; VALUE agsalesa (default=32) 1 = "Allocated" ; VALUE elec (default=32) 0000 = "Included in rent or condominium fee" 0001 = "No charge or not used" 0002 = "$1 or $2" 4800 = "topcode" ; VALUE eleca (default=32) 1 = "Allocated" ; VALUE gas (default=32) 0000 = "Included in rent or condominium fee" 0001 = "No charge or not used" 0002 = "$1 or $2" 3000 = "topcode" ; VALUE gasa (default=32) 1 = "Allocated" ; VALUE water (default=32) 0000 = "Included in rent or condominium fee" 0001 = "No charge or not used" 0002 = "$1 or $2" 2000 = "topcode" ; VALUE watera (default=32) 1 = "Allocated" ; VALUE oil (default=32) 0000 = "Included in rent or condominium fee" 0001 = "No charge or not used" 0002 = "$1 or $2" 2100 = "topcode" ; VALUE oila (default=32) 1 = "Allocated" ; VALUE rent (default=32) 1700 = "topcode" ; VALUE renta (default=32) 1 = "Allocated" ; VALUE meals (default=32) 1 = "Yes" 2 = "No" ; VALUE mealsa (default=32) 1 = "Allocated" ; VALUE mortg1l (default=32) 1 = "Yes, mortgage, deed of trust or simila" /* r debt */ 2 = "Yes, contract to purchase" 3 = "No" ; VALUE mortg1a (default=32) 1 = "Allocated" ; VALUE mrt1amt (default=32) 00000 = "No regular payment" 03000 = "topcode" ; VALUE mrt1amta (default=32) 1 = "Allocated" ; VALUE mortg2l (default=32) 1 = "Yes, a 2nd mortgage" 2 = "Yes, a home equity loan" 3 = "No" 4 = "Both a 2nd mortgage and a home equity " /* loan */ ; VALUE mortg2a (default=32) 1 = "Allocated" ; VALUE mrt2amt (default=32) 00000 = "No regular payment" 01100 = "topcode" ; VALUE mrt2amta (default=32) 1 = "Allocated" ; VALUE taxincl (default=32) 1 = "Yes, taxes included in mortgage paymen" /* t */ 2 = "No, taxes paid separately, or taxes no" /* t required */ ; VALUE taxincla (default=32) 1 = "Allocated" ; VALUE taxamt (default=32) 00 = "Not in universe (GQ, renter-occupied o" /* r vacant but VACSTAT not 2) */ 01 = "No taxes paid" 02 = "$1 to $49" 03 = "$50 to $99" 04 = "$100 ro $149" 05 = "$150 to $199" 06 = "$200 to $249" 07 = "$250 to $299" 08 = "$300 to $349" 09 = "$350 to $399" 10 = "$400 to $449" 11 = "$450 to $499" 12 = "$500 to $549" 13 = "$550 to $599" 14 = "$600 to $649" 15 = "$650 to $699" 16 = "$700 to $749" 17 = "$750 to $799" 18 = "$800 to $849" 19 = "$850 to $899" 20 = "$900 to $949" 21 = "$950 to $999" 22 = "$1,000 to $1,099" 23 = "$1,100 to $1,199" 24 = "$1,200 to $1,299" 25 = "$1,300 to $1,399" 26 = "$1,400 to $1,499" 27 = "$1,500 to $1,599" 28 = "$1,600 to $1,699" 29 = "$1,700 to $1,799" 30 = "$1,800 to $1,899" 31 = "$1,900 to $1,999" 32 = "$2,000 to $2,099" 33 = "$2,100 to $2,199" 34 = "$2,200 to $2,299" 35 = "$2,300 to $2,399" 36 = "$2,400 to $2,499" 37 = "$2,500 to $2,599" 38 = "$2,600 to $2,699" 39 = "$2,700 to $2,799" 40 = "$2,800 to $2,899" 41 = "$2,900 to $2,999" 42 = "$3,000 to $3,099" 43 = "$3,100 to $3,199" 44 = "$3,200 to $3,299" 45 = "$3,300 to $3,399" 46 = "$3,400 to $3,499" 47 = "$3,500 to $3,599" 48 = "$3,600 to $3,699" 49 = "$3,700 to $3,799" 50 = "$3,800 to $3,899" 51 = "$3,900 to $3,999" 52 = "$4,000 to $4,099" 53 = "$4,100 ro $4,199" 54 = "$4,200 to $4,299" 55 = "$4,300 to $4,399" 56 = "$4,400 to $4,499" 57 = "$4,500 to $4,599" 58 = "$4,600 to $4,699" 59 = "$4,700 to $4,799" 60 = "$4,800 to $4,899" 61 = "$4,900 to $4,999" 62 = "$5,000 to $5,499" 63 = "$5,500 to $5,999" 64 = "$6,000 to $6,999" 65 = "$7,000 to $7,999" 66 = "$8,000 to $9,099" 67 = "$9,100 or more" ; VALUE taxamta (default=32) 0 = "Not allocated" 1 = "Allocated" ; VALUE insincl (default=32) 1 = "Yes, insurance included in mortgage pa" /* yment */ 2 = "No, insurance paid separately, or no i" /* nsurance */ ; VALUE insincla (default=32) 0 = "Not allocated" 1 = "Allocated" ; VALUE insamt (default=32) 2500 = "Topcode" ; VALUE insamta (default=32) 0 = "Not allocated" 1 = "Allocated" ; VALUE condfee (default=32) 0000 = "Not a condominium" 0720 = "Topcode" ; VALUE condfeea (default=32) 0 = "Not allocated" 1 = "Allocated" ; VALUE value (default=32) 01 = "Less than $10,000" 02 = "$10,000 to $14,999" 03 = "$15,000 to $19,999" 04 = "$20,000 to $24,999" 05 = "$25,000 to $29,999" 06 = "$30,000 to $34,999" 07 = "$35,000 to $39,999" 08 = "$40,000 to $49,999" 09 = "$50,000 to $59,999" 10 = "$60,000 to $69,999" 11 = "$70,000 to $79,999" 12 = "$80,000 to $89,999" 13 = "$90,000 to $99,999" 14 = "$100,000 to $124,999" 15 = "$125,000 to $149,999" 16 = "$150,000 to $174,999" 17 = "$175,000 to $199,999" 18 = "$200,000 to $249,999" 19 = "$250,000 to $299,999" 20 = "$300,000 to $399,999" 21 = "$400,000 to $499,999" 22 = "$500,000 to $749,999" 23 = "$750,000 to $999,999" 24 = "$1,000,000 or more" ; VALUE valuea (default=32) 1 = "Allocated" ; VALUE mhloan (default=32) 1 = "Yes" 2 = "No" ; VALUE mhloana (default=32) 1 = "Allocated" ; VALUE mhcost (default=32) 00000 = "No cost" 10000 = "topcode" ; VALUE mhcosta (default=32) 1 = "Allocated" ; VALUE hht (default=32) 1 = "Family household: married-couple" 2 = "Family household: male householder, no" /* wife present */ 3 = "Family household: female householder, " /* no husband present */ 4 = "Nonfamily household: Male householder," /* living alone */ 5 = "Nonfamily household: Male householder," /* not living alone */ 6 = "Nonfamily household: Famale householde" /* r, living alone */ 7 = "Nonfamily household: Female householde" /* r, not living alone */ ; VALUE p65l (default=32) 00 = "Not in universe (vacant or GQ)" ; VALUE p18l (default=32) 00 = "Not in universe (vacant or GQ)" ; VALUE npf (default=32) 00 = "Not in universe (vacant, GQ, or HHT no" /* t 1-3) */ ; VALUE noc (default=32) 00 = "None (includes not in universe: vacant" /* or GQ) */ ; VALUE nrc (default=32) 00 = "None (includes not in universe: vacant" /* or GQ) */ ; VALUE psf (default=32) 1 = "1 or more subfamilies" ; VALUE paoc (default=32) 1 = "With own children under 6 years only" 2 = "With own children 6 to 17 years only" 3 = "With own children under 6 years and 6 " /* to 17 years */ 4 = "No own children under 18 years" ; VALUE parc (default=32) 1 = "With related children under 6 years on" /* ly */ 2 = "With related children 6 to 17 years on" /* ly */ 3 = "With related children under 6 years an" /* d 6 to 17 years */ 4 = "No related children under 18 years" ; VALUE sval (default=32) 1 = "Specified unit" ; VALUE smoc (default=32) 00000 = "Not in universe (vacant, GQ, no costs," /* not owner-occupied) */ 25000 = "$25,000 or more" ; VALUE smocapi (default=32) 000 = "Not in universe (vacant, GQ, no costs," /* not owner-occupied, or household income less than $1) */ 101 = "101% or more" ; VALUE srnt (default=32) 1 = "Specified" ; VALUE grent (default=32) 0000 = "Not in universe (Vacant, GQ, owner-occ" /* upied, not rented for cash rent) */ 9999 = "$9,999 or more" ; VALUE grapi (default=32) 000 = "Not in universe (vacant, GQ, owner-occ" /* upied, not rented for cash rent, or household income is not positive, or 0%) */ 101 = "101% or more" ; VALUE fnf (default=32) 1 = "Farm" 2 = "Nonfarm" ; VALUE hhl (default=32) 1 = "English only" 2 = "Spanish" 3 = "Other Indo-European" 4 = "Asian or Pacific Island" 5 = "Other language" ; VALUE lngi (default=32) 1 = "Not linguistically isolated" 2 = "Linguistically isolated" ; VALUE wif (default=32) 1 = "No workers in family" 2 = "1 worker in family" 3 = "2 workers in family" 4 = "3 or more workers in famly" ; VALUE empstat (default=32) 1 = "Married-couple family; husband in labo" /* r force, wife in labor force */ 2 = "Married-couple family; husband in labo" /* r force, wife not in labor force */ 3 = "Married-couple family; husband not in " /* labor force, wife in labor force */ 4 = "Married-couple family; husband not in " /* labor force, wife not in labor force */ 5 = "Other family, male householder, no wif" /* e present, in labor force */ 6 = "Other family, male householder, no wif" /* e present, not in labor force */ 7 = "Other family, female householder, no h" /* usband present, in labor force */ 8 = "Other family, female householder, no h" /* usband present, not in labor force */ ; VALUE workexp (default=32) 00 = "Not in universe (vacant, GQ, or HHT no" /* t 1-3) */ 01 = "Married-couple family; householder wor" /* ked full-time year-round in 1999, spouse worked full-time year-round in 1999 */ 02 = "Married-couple family; householder wor" /* ked full-time year-round in 1999, spouse worked less than full-time year-round in 1999 */ 03 = "Married-couple family; householder wor" /* ked full-time year-round in 1999, spouse did not work in 1999 */ 04 = "Married-couple family; householder wor" /* ked less than full-time year-round in 1999, spouse worked full-time year-round in 1999 */ 05 = "Married-couple family; householder wor" /* ked less than full-time year-round in 1999, spouse worked less than full-time year-round in 1999 */ 06 = "Married-couple family; householder wor" /* ked less than full-time year-round in 1999, spouse did not work in 1999 */ 07 = "Married-couple family; householder did" /* not work in 1999, spouse worked full-time year-round in 1999 */ 08 = "Married-couple family; householder did" /* not work in 1999, spouse worked less than full-time year-round in 1999 */ 09 = "Married-couple family; householder did" /* not work in 1999, spouse did not work in 1999 */ 10 = "Other family; male householder, no wif" /* e present, householder worked full-time year-round in 1999 */ 11 = "Other family; male householder, no wif" /* e present, householder worked less than full-time year-round in 1999 */ 12 = "Other family; male householder, no wif" /* e present, householder did not work in 1999 */ 13 = "Other family; female householder, no h" /* usband present, householder worked full-time year-round in 1999 */ 14 = "Other family; female householder, no h" /* usband present, householder worked less than full-time year-round in 1999 */ 15 = "Other family; female householder, no h" /* usband present, householder did not work in 1999 */ ; VALUE hinc (default=32) -0059999 = "Loss of $59,999 or more" 00000000 = "Not in universe (vacant, GQ, no income" /* ) */ ; VALUE finc (default=32) -0059999 = "Loss of $59,999 or more" 00000000 = "Not in universe (vacant, GQ, no income" /* ) */ ; VALUE $rectypex (default=32) "P" = "Person record" ; VALUE paug (default=32) 1 = "Augmented" ; VALUE ddp (default=32) 1 = "No, imputed by edit" 2 = "No, substituted" ; VALUE relate (default=32) 01 = "Householder" 02 = "Husband/wife" 03 = "Natural born son/daughter" 04 = "Adopted son/daughter" 05 = "Stepson/Stepdaughter" 06 = "Brother/sister" 07 = "Father/mother" 08 = "Grandchild" 09 = "Parent-in-law" 10 = "Son-in-law/daughter-in-law" 11 = "Other relative" 12 = "Brother-in-law/sister-in-law" 13 = "Nephew/niece" 14 = "Grandparent" 15 = "Uncle/aunt" 16 = "Cousin" 17 = "Roomer/boarder" 18 = "Housemate/roommate" 19 = "Unmarried partner" 20 = "Foster child" 21 = "Other nonrelative" 22 = "Institutionalized GQ person" 23 = "Noninstitutionalized GQ person" ; VALUE relatea (default=32) 1 = "Allocated" ; VALUE oc (default=32) 1 = "Yes, own child under 18 years" ; VALUE rc (default=32) 1 = "Yes, related child under 18 years" ; VALUE paocf (default=32) 1 = "With own children under 6 years only" 2 = "With own children 6 to 17 years only" 3 = "With own children under 6 years and 6 " /* to 17 years */ 4 = "No own children under 18 years" ; VALUE sex (default=32) 1 = "Male" 2 = "Female" ; VALUE sexa (default=32) 1 = "Allocated" ; VALUE age (default=32) 90 = "topcode" ; VALUE agea (default=32) 1 = "Allocated" ; VALUE hispan (default=32) 01 = "Not Hispanic or Latino" 02 = "Mexican" 03 = "Puerto Rican" 04 = "Cuban" 05 = "Dominican" 06 = "Costa Rican" 07 = "Guatemalan" 08 = "Honduran" 09 = "Nicaraguan" 10 = "Panamanian" 11 = "Salvadoran" 12 = "Other Central American" 13 = "Argentinean" 14 = "Bolivian" 15 = "Chilean" 16 = "Colombian" 17 = "Ecuadoran" 18 = "Paraguayan" 19 = "Peruvian" 20 = "Uruguayan" 21 = "Venezuelan" 22 = "Other South American" 23 = "Spaniard" 24 = "Other Spanish or Latino" ; VALUE hispana (default=32) 1 = "Allocated" ; VALUE numrace (default=32) 1 = "One race" 2 = "Two races" 3 = "Three races" 4 = "Four races" 5 = "Five races" 6 = "Six races" ; VALUE white (default=32) 1 = "Yes, alone or in combination with one " /* or more other races */ ; VALUE black (default=32) 1 = "Yes, alone or in combination with one " /* ore more other races */ ; VALUE aian (default=32) 1 = "Yes, alone or in combination with one " /* ore more other races */ ; VALUE asian (default=32) 1 = "Yes, alone or in combination with one " /* ore more other races */ ; VALUE nhpi (default=32) 1 = "Yes, alone or in combination with one " /* ore more other races */ ; VALUE other (default=32) 1 = "Yes, alone or in combination with one " /* ore more other races */ ; VALUE race1l (default=32) 1 = "White alone" 2 = "Black or African American alone" 4 = "Alaska Native alone" 5 = "American Indian and Alaska Native trib" /* es specified, and American Indian or Alaska Native, not specified, and no other races */ 6 = "Asian alone" 7 = "Native Hawaiian and Other Pacific Isla" /* nder alone */ 8 = "Some other race alone" 9 = "Two or more major race groups" ; VALUE race2l (default=32) 01 = "White alone" 02 = "Black or African American alone" 03 = "Apache alone" 04 = "Blackfeet alone" 05 = "Cherokee alone" 06 = "Cheyenne alone" 07 = "Chickasaw alone" 08 = "Chippewa alone" 09 = "Choctaw alone" 10 = "Comanche alone" 11 = "Creek alone" 12 = "Crow alone" 13 = "Delaware alone" 14 = "Iroquois alone" 15 = "Kiowa alone" 16 = "Latin American Indian alone" 17 = "Lumbee alone" 18 = "Navajo alone" 19 = "Paiute alone" 20 = "Pima alone" 21 = "Potawatomi alone" 22 = "Pueblo alone" 23 = "Puget Sound Salish alone" 24 = "Seminole alone" 25 = "Sioux alone" 26 = "Tohono O'Odham alone" 27 = "Yakama alone" 28 = "Yaqui alone" 29 = "Other specified American Indian tribes" /* alone */ 30 = "All other specified American Indian tr" /* ibe combinations */ 31 = "Alaskan Athabascan alone" 32 = "Aleut alone" 33 = "Eskimo alone" 34 = "Tlingit-Haida alone" 35 = "All specified American Indian and Alas" /* ka Native tribes alone or in combination with other tribes */ 36 = "American Indian and Alaska Native, not" /* specified */ 37 = "Asian Indian alone" 38 = "Bangladeshi alone" 39 = "Cambodian alone" 40 = "Chinese, except Taiwanese, alone" 41 = "Taiwanese alone" 42 = "Filipino alone" 43 = "Hmong alone" 44 = "Indonesian alone" 45 = "Japanese alone" 46 = "Korean alone" 47 = "Laotian alone" 48 = "Malaysian alone" 49 = "Pakistani alone" 50 = "Sri Lankan alone" 51 = "Thai alone" 52 = "Vietnamese alone" 53 = "Other specified Asian alone" 54 = "Asian, not specified, alone" 55 = "All combinations of Asian races only" 56 = "Native Hawaiian alone" 57 = "Samoan alone" 58 = "Tongan alone" 59 = "Other Polynesian alone or in combinati" /* on with other Polynesian races */ 60 = "Guamanian or Chamorro alone" 61 = "Other Micronesian alone or in combinat" /* ion with other Micronesian races */ 62 = "Melanesian alone or in combination wit" /* h other Melanesian races */ 63 = "Other Native Hawaiian and Other Pacifi" /* c Islander */ 64 = "Some other race alone" 65 = "Two or more major races" ; VALUE race3l (default=32) 01 = "Some other race alone" 02 = "Other Pacific Islander alone" 03 = "Other Pacific Islander; Some other rac" /* e */ 04 = "Samoan alone" 05 = "Guamanian or Chamorro alone" 06 = "Native Hawaiian alone" 07 = "Other Asian alone" 08 = "Other Asian; Some other race" 09 = "Other Asian; Other Pacific Islander" 10 = "Vietnamese alone" 11 = "Korean alone" 12 = "Japanese alone" 13 = "Japanese; Some other race" 14 = "Japanese; Native Hawaiian" 15 = "Filipino alone" 16 = "Filipino; Some other race" 17 = "Filipino; Other Pacific Islander" 18 = "Filipino; Native Hawaiian" 19 = "Filipino; Japanese" 20 = "Chinese alone" 21 = "Chinese; Some other race" 22 = "Chinese; Native Hawaiian" 23 = "Chinese; Other Asian" 24 = "Chinese; Vietamese" 25 = "Chinese; Japanese" 26 = "Chinese; Filipino" 27 = "Chinese; Filipino; Native Hawaiian" 28 = "Asian Indian alone" 29 = "Asian Indian; Some other race" 30 = "Asian Indian; Other Pacific Islander" 31 = "Asian Indian; Other Asian" 32 = "American Indian and Alaska Native alon" /* e */ 33 = "American Indian and Alaska Native; Som" /* e other race */ 34 = "American Indian and Alaska Native; Oth" /* er Asian */ 35 = "American Indian and Alaska Native; Fil" /* ipino */ 36 = "American Indian and Alaska Native; Asi" /* an Indian */ 37 = "Black or African American alone" 38 = "Black or African American; Some other " /* race */ 39 = "Black or African American; Other Pacif" /* ic Islander */ 40 = "Black or African American; Other Asian" 41 = "Black or African American; Korean" 42 = "Black or African American; Japanese" 43 = "Black or African American; Filipino" 44 = "Black or African American; Chinese" 45 = "Black or African American; Asian India" /* n */ 46 = "Black or African American; American In" /* dian and Alaska Native */ 47 = "White alone" 48 = "White; Some other race" 49 = "White; Other Pacific Islander" 50 = "White; Samoan" 51 = "White; Guamanian or Chamorro" 52 = "White; Natve Hawaiian" 53 = "White; Other Asian" 54 = "White; Other Asian; Some other race" 55 = "White; Vietnamese" 56 = "White; Korean" 57 = "White; Japanese" 58 = "White; Japanese; Hative Hawaiian" 59 = "White; Filipino" 60 = "White; Filipino; Some other race" 61 = "White; Filipino; Native Hawaiian" 62 = "White; Chinese" 63 = "White; Chinese; Native Hawaiian" 64 = "White; Chinese; Filipino; Native Hawai" /* ian */ 65 = "White; Asian Indian" 66 = "White; American Indian and Alaska Nati" /* ve */ 67 = "White; American Indian and Alaska Nati" /* ve; Some other race */ 68 = "White; Black or African American" 69 = "White; Black or African American; Some" /* other race */ 70 = "White; Black or African American; Amer" /* ican Indian and Alaska Native */ 71 = "All other race combinations" ; VALUE racea (default=32) 1 = "Allocated" ; VALUE marstat (default=32) 1 = "Now married" 2 = "Widowed" 3 = "Divorced" 4 = "Separated" 5 = "Never married (includes under 15 years" /* ) */ ; VALUE marstata (default=32) 1 = "Allocated" ; VALUE msp (default=32) 1 = "Now married, spouse present" 2 = "Now married, spouse absent" 3 = "Widowed" 4 = "Divorced" 5 = "Separated" 6 = "Never married" ; VALUE sfn (default=32) 1 = "In subfamily #1" 2 = "In subfamily #2" 3 = "In subfamily #3" 4 = "In subfamily #4" ; VALUE sfrel (default=32) 1 = "Husband/wife, no children" 2 = "Husband/wife, with children" 3 = "Parent in one-parent subfamily" 4 = "Child in married-couple subfamily" 5 = "Child in mother-child subfamily" 6 = "Child in father-child subfamily" ; VALUE enroll (default=32) 1 = "No, has not attended since February 1" 2 = "Yes, public school or college" 3 = "Yes, private school or college" ; VALUE enrolla (default=32) 1 = "Allocated" ; VALUE grade (default=32) 1 = "Nursery school, preschool" 2 = "Kindergarten" 3 = "Geade 1 to grade 4" 4 = "Grade 5 to grade 8" 5 = "Grade 9 to grade 12" 6 = "College undergraduate" 7 = "Graduate or professional school" ; VALUE gradea (default=32) 1 = "Allocated" ; VALUE educ (default=32) 00 = "Not in universe (Under 3 years)" 01 = "No schooling completed" 02 = "Nursery school to 4th grade" 03 = "5th grade or 6th grade" 04 = "7th grade or 8th grade" 05 = "9th grade" 06 = "10th grade" 07 = "11th grade" 08 = "12th grade, no diploma" 09 = "High school graduate" 10 = "Some college, but less than 1 year" 11 = "One or more years of college, no degre" /* e */ 12 = "Associate degree" 13 = "Bachelor's degree" 14 = "Master's degree" 15 = "Professional degree" 16 = "Doctorate degree" ; VALUE educa (default=32) 1 = "Allocated" ; VALUE anca (default=32) 1 = "Allocated" ; VALUE ancr (default=32) 1 = "Single" 2 = "Multiple" 3 = "Unclassified" 4 = "Not reported" ; VALUE speak (default=32) 1 = "Yes" 2 = "No" ; VALUE speaka (default=32) 1 = "Allocated" ; VALUE lang1l (default=32) 000 = "Not in universe (Less than 5 years or " /* SPEAK = 2) */ ; VALUE langa (default=32) 1 = "Allocated" ; VALUE engabil (default=32) 1 = "Very well" 2 = "Well" 3 = "Not well" 4 = "Not at all" ; VALUE engabila (default=32) 1 = "Allocated" ; VALUE poba (default=32) 1 = "Allocated" ; VALUE citizen (default=32) 1 = "Yes, born in the United States" 2 = "Yes, born in Puerto Rico, Guam, U.S. V" /* irgin Islands, American Samoa, or Northern Marianas */ 3 = "Yes, born abroad of American parent or" /* parents */ 4 = "Yes, U.S. citizen by naturalization" 5 = "No, not a citizen of the United States" ; VALUE citizena (default=32) 1 = "Allocated" ; VALUE yr2us (default=32) 0000 = "Not in universe (CITIZEN = 1)" 1910 = "1910 or earlier" ; VALUE yr2usa (default=32) 1 = "Allocated" ; VALUE mob (default=32) 1 = "Yes, same house" 2 = "No, outside the U.S. (outside the U.S." /* or Puerto Rico if Puerto Rico is state of residence) */ 3 = "No, different house in the U.S. (diffe" /* rent house in Puerto Rico or the U.S. if Puerto Rico is the state of residence) */ ; VALUE moba (default=32) 1 = "Allocated" ; VALUE migst1l (default=32) 000 = "Not in universe (Under 5 years)" ; VALUE migsta (default=32) 1 = "Allocated" ; VALUE migpumaa (default=32) 00000 = "Not in universe (Under 5 years)" 00001 = "Did not live in the United States or i" /* nPuerto Rico in 1995 */ 00002 = "Lived in Puerto Rico in 1995 and in th" /* e U.S. in 2000 */ ; VALUE migareaa (default=32) 00 = "Not in universe (Under 5 years)" 01 = "Did not live in the United States or i" /* n Puerto Rico in 1995 */ 02 = "Lived in Puerto Rico in 1995 and in th" /* e U.S. in 2000 */ 11 = "Contains only metropolitan territory i" /* nside central city (MSA part of fully-identified MSA) */ 12 = "Contains only metropolitan territory o" /* utside central city (MSA part of fully-identified MSA) */ 13 = "Contains only metropolitan territory b" /* oth inside and outside central city (MSA part of fully identified MSA) */ 14 = "Contains an entire MSA (and no other t" /* erritory) */ 21 = "Contains only metropolitan territory i" /* nside central city (MSA part of partially-identified MSA) */ 22 = "Contains only metropolitan territory o" /* utside central city (MSA part of partially-identified MSA) */ 23 = "Contains only metropolitan territory b" /* oth inside and outside central city (MSA part of partially-identified MSA) */ 31 = "Contains only metropolitan territory i" /* nside central city (PMSA part of fully-identified PMSA and fully-identified CMSA) */ 32 = "Contains only metropolitan territory o" /* utside central city (PMSA part of fully-identified PMSA and fully-identified CMSA) */ 33 = "Contains only metropolitan territory b" /* oth inside and outside central city (PMSA part of fully-identified PMSA and fully-identified CMSA) */ 34 = "Contains an entire PMSA (and no other " /* territory) (PMSA belongs to a fully-identified CMSA) */ 41 = "Contains only metropolitan territory i" /* nside central city (PMSA part of fully-identified PMSA and partially-identified CMSA) */ 42 = "Contains only metropolitan territory o" /* utside central city (PMSA part of fully-identified PMSA and partially-identified CMSA) */ 43 = "Contains only metropolitan territory b" /* oth inside and outside central city (PMSA part of fully-identified PMSA and partially-identified CMSA) */ 44 = "Contains an entire PMSA (and no other " /* territory) (PMSA belongs to a partially-identified CMSA) */ 51 = "Contains only metropolitan territory i" /* nside central city (PMSA part of partially-identified PMSA and partially-identified CMSA) */ 52 = "Contains only metropolitan territory o" /* utside central city (PMSA part of partially-identified PMSA and partially-identified CMSA) */ 53 = "Contains only metropolitan territory b" /* oth inside and outside central city (PMSA part of partially-identified PMSA and partially-identified CMSA) */ 70 = "Contains both metropolitan and nonmetr" /* opolitan territory */ 80 = "Contains only metropolitan territory i" /* n two or more partial and/or entire MSAs/PMSAs/CMSAs */ 90 = "Contains only nonmetropolitan territor" /* y */ ; VALUE migcma1l (default=32) 0000 = "Not in universe (Under 5 years)" 0001 = "Did not live in the United States or i" /* n Puerto Rico in 1995 */ 0002 = "Lived in Puerto Rico in 1995 and in th" /* e U.S. in 2000 */ 9997 = "Mixed MSA/CMSA and nonmetropolitan ter" /* ritory */ 9998 = "2 or more MSAs/CMSAs" 9999 = "Not in metropolitan area" ; VALUE migpma1l (default=32) 0000 = "Not in universe (Under 5 years)" 0001 = "Did not live in the United States or i" /* n Puerto Rico in 1995 */ 0002 = "Lived in Puerto Rico in 1995 and in th" /* e U.S. in 2000 */ 9997 = "Mixed MSA/PMSA and nonmetropolitan ter" /* ritory */ 9998 = "2 or more MSAs/PMSAs" 9999 = "Not in metropolitan area" ; VALUE sensory (default=32) 1 = "Yes" 2 = "No" ; VALUE sensorya (default=32) 1 = "Allocated" ; VALUE physcl (default=32) 1 = "Yes" 2 = "No" ; VALUE physcla (default=32) 1 = "Allocated" ; VALUE mental (default=32) 1 = "Yes" 2 = "No" ; VALUE mentala (default=32) 1 = "Allocated" ; VALUE slfcare (default=32) 1 = "Yes" 2 = "No" ; VALUE slfcarea (default=32) 1 = "Allocated" ; VALUE abgo (default=32) 1 = "Yes" 2 = "No" ; VALUE abgoa (default=32) 1 = "Allocated" ; VALUE abwork (default=32) 1 = "Yes" 2 = "No" ; VALUE abworka (default=32) 1 = "Allocated" ; VALUE disable (default=32) 1 = "With a disability" 2 = "Without a disability" ; VALUE grandc (default=32) 1 = "Yes" 2 = "No" ; VALUE grandca (default=32) 1 = "Allocated" ; VALUE rspnsbl (default=32) 1 = "Yes" 2 = "No" ; VALUE rspnsbla (default=32) 1 = "Allocated" ; VALUE howlong (default=32) 1 = "Less than 6 months" 2 = "6 to 11 months" 3 = "1 or 2 years" 4 = "3 or 4 years" 5 = "5 years or more" ; VALUE howlonga (default=32) 1 = "Allocated" ; VALUE miltary (default=32) 1 = "Yes, now on active dury" 2 = "Yes, on active duty in the past, but n" /* ot now */ 3 = "No, training for reserves or National " /* Guard only */ 4 = "No active duty service" ; VALUE miltarya (default=32) 1 = "Allocated" ; VALUE vps1l (default=32) 1 = "Served in this period" ; VALUE vps2l (default=32) 1 = "Served in this period" ; VALUE vps3l (default=32) 1 = "Served in this period" ; VALUE vps4l (default=32) 1 = "Served in this period" ; VALUE vps5l (default=32) 1 = "Served in this period" ; VALUE vps6l (default=32) 1 = "Served in this period" ; VALUE vps7l (default=32) 1 = "Served in this period" ; VALUE vps8l (default=32) 1 = "Served in this period" ; VALUE vps9l (default=32) 1 = "Served in this period" ; VALUE vpsa (default=32) 1 = "Allocated" ; VALUE milyrs (default=32) 1 = "Less than 2 years" 2 = "2 years or more" ; VALUE milyrsa (default=32) 1 = "Allocated" ; VALUE vpsr (default=32) 00 = "Not in universe (Under 18 years or no " /* active duty military service) */ 01 = "August 1990 or later (including Persia" /* n Gulf War); Served in Vietnam era */ 02 = "August 1990 or later (including Persia" /* n Gulf War); No Vietnam era service; September 1980 or later only; Served under 2 years */ 03 = "August 1990 or later (including Persia" /* n Gulf War); No Vietnam era service; September 1980 or later only; Served 2 years or more */ 04 = "August 1990 or later (including Persia" /* n Gulf War); No Vietnam era service; September 1980 or later only; Served prior to September 1980 */ 05 = "May 1975 to July 1990 only: September " /* 1980 to July 1990 only: Served under 2 years */ 06 = "May 1975 to July 1990 only: September " /* 1980 to July 1990 only: Served 2 years or more */ 07 = "May 1975 to July 1980 only: September " /* 1980 to July 1990 only; Other May 1975 to August 1980 service */ 08 = "Vietnam era, no Korean War, no WWII, n" /* o August 1990 or later */ 09 = "Vietnam era, Korean War, no WWII" 10 = "Vietnam era, Korean War, and WWII" 11 = "February 1955 to July 1964 only" 12 = "Korean War, no Vietnam era, no WWII" 13 = "Korean War and WWII, no Vietnam era" 14 = "WWII, no Korean War, no Vietnam era" 15 = "Other service only" ; VALUE esr (default=32) 1 = "Employed, at work" 2 = "Employed, with a job but not at work" 3 = "Unemployed" 4 = "Armed Forces, at work" 5 = "Armed Forces, with a job but not at wo" /* rk */ 6 = "Not in labor force" ; VALUE esra (default=32) 1 = "Allocated" ; VALUE esp (default=32) 1 = "Living with 2 parents, both parents in" /* labor force */ 2 = "Living with 2 parents, father only in " /* labor force */ 3 = "Living with 2 parents, mother only in " /* labor force */ 4 = "Living with 2 parents, neither parent " /* in labor force */ 5 = "Living with one parent: living with fa" /* ther; father in labor force */ 6 = "Living with one parent; living with fa" /* ther; father not in labor force */ 7 = "Living with one parent: living with mo" /* ther; mother in labor force */ 8 = "Living with one parent; living with mo" /* ther; mother not in labor force */ ; VALUE powst1l (default=32) 000 = "Not in universe (Under 16 years or ESR" /* not 1 and not 4) */ 072 = "Puerto Rico" 096 = "Island Area not specifed" 554 = "At sea" 555 = "Abroad, country not specified" ; VALUE powsta (default=32) 1 = "Allocated" ; VALUE powpumaa (default=32) 00000 = "Not in universe (Under 16 years or ESR" /* not 1 and not 4) */ 00001 = "Did not work in the United States or i" /* n Puerto Rico */ ; VALUE powareaa (default=32) 00 = "Not in universe (Under 16 years or ESR" /* not 1 and not 4) */ 01 = "Did not work in the United States or i" /* n Puerto Rico */ 11 = "Contains only metropolitan territory i" /* nside central city (MSA part of fully-identified MSA) */ 12 = "Contains only metropolitan territory o" /* utside central city (MSA part of fully-identified MSA) */ 13 = "Contains only metropolitan territory b" /* oth inside and outside central city (MSA part of fully identified MSA) */ 14 = "Contains an entire MSA (and no other t" /* erritory) */ 21 = "Contains only metropolitan territory i" /* nside central city (MSA part of partially-identified MSA) */ 22 = "Contains only metropolitan territory o" /* utside central city (MSA part of partially-identified MSA) */ 23 = "Contains only metropolitan territory b" /* oth inside and outside central city (MSA part of partially-identified MSA) */ 31 = "Contains only metropolitan territory i" /* nside central city (PMSA part of fully-identified PMSA and fully-identified CMSA) */ 32 = "Contains only metropolitan territory o" /* utside central city (PMSA part of fully-identified PMSA and fully-identified CMSA) */ 33 = "Contains only metropolitan territory b" /* oth inside and outside central city (PMSA part of fully-identified PMSA and fully-identified CMSA) */ 34 = "Contains an entire PMSA (and no other " /* territory) (PMSA belongs to a fully-identified CMSA) */ 41 = "Contains only metropolitan territory i" /* nside central city (PMSA part of fully-identified PMSA and partially-identified CMSA) */ 42 = "Contains only metropolitan territory o" /* utside central city (PMSA part of fully-identified PMSA and partially-identified CMSA) */ 43 = "Contains only metropolitan territory b" /* oth inside and outside central city (PMSA part of fully-identified PMSA and partially-identified CMSA) */ 44 = "Contains an entire PMSA (and no other " /* territory) (PMSA belongs to a partially-identified CMSA) */ 51 = "Contains only metropolitan territory i" /* nside central city (PMSA part of partially-identified PMSA and partially-identified CMSA) */ 52 = "Contains only metropolitan territory o" /* utside central city (PMSA part of partially-identified PMSA and partially-identified CMSA) */ 53 = "Contains only metropolitan territory b" /* oth inside and outside central city (PMSA part of partially-identified PMSA and partially-identified CMSA) */ 70 = "Contains both metropolitan and nonmetr" /* opolitan territory */ 80 = "Contains only metropolitan territory i" /* n two or more partial and/or entire MSAs/PMSAs/CMSAs */ 90 = "Contains only nonmetropolitan territor" /* y */ ; VALUE powcma1l (default=32) 0000 = "Not in universe (Under 16 years, not i" /* n labor force, unemployed, with a job but not a work) */ 0001 = "Did not work in the United States or i" /* n Puerto Rico */ 9997 = "Mixed MSA/CMSA and nonmetropolitan ter" /* ritory */ 9998 = "2 or more MSAs/CMSAs" 9999 = "Not in metropolitan area" ; VALUE powpma1l (default=32) 0000 = "Not in universe (Under 16 years, not i" /* n labor force, unemployed, with a job but not a work) */ 0001 = "Did not work in the United States or i" /* n Puerto Rico */ 9997 = "Mixed MSA/PMSA and nonmetropolitan ter" /* ritory */ 9998 = "2 or more MSAs/PMSAs" 9999 = "Not in metropolitan area" ; VALUE trvmns (default=32) 00 = "Not in universe (Under 16 years or ESR" /* not 1 and not 4 */ 01 = "Car, truck, or van" 02 = "Bus or trolley bus" 03 = "Streetcar or trolley car (publico in P" /* uerto Rico) */ 04 = "Subway or elevated" 05 = "Railroad" 06 = "Ferryboat" 07 = "Taxicab" 08 = "Motorcycle" 09 = "Bicycle" 10 = "Walked" 11 = "Worked at home" 12 = "Other method" ; VALUE trvmnsa (default=32) 1 = "Allocated" ; VALUE carpool (default=32) 1 = "Drove alone" 2 = "2 people" 3 = "3 people" 4 = "4 people" 5 = "5 or 6 people" 6 = "7 or more people" ; VALUE carpoola (default=32) 1 = "Allocated" ; VALUE lvtime (default=32) 000 = "Not in universe (Under 16 years, ESR n" /* ot 1 or 4, or TRVMNS = 11) */ 001 = "12:00 am to 12:29 am" 002 = "12:30 am to 12:59 am" 003 = "1:00 am to 1:29 am" 004 = "1:30 am to 1:59 am" 005 = "2:00 am to 2:29 am" 006 = "2:30 am to 2:59 am" 007 = "3:00 am to 3:09 am" 008 = "3:10 am to 3:19 am" 009 = "3:20 am to 3:29 am" 010 = "3:30 am to 3:39 am" 011 = "3:40 am to 3:49 am" 012 = "3:50 am to 3:59 am" 013 = "4:00 am to 4:09 am" 014 = "4:10 am to 4:19 am" 015 = "4:20 am to 4:29 am" 016 = "4:30 am to 4:39 am" 017 = "4:40 am to 4:49 am" 018 = "4:50 am to 4:59 am" 019 = "5:00 am to 5:04 am" 020 = "5:05 am to 5:09 am" 021 = "5:10 am to 5:14 am" 022 = "5:15 am to 5:19 am" 023 = "5:20 am to 5:24 am" 024 = "5:25 am to 5:29 am" 025 = "5:30 am to 5:34 am" 026 = "5:35 am to 5:39 am" 027 = "5:40 am to 5:44 am" 028 = "5:45 am to 5:49 am" 029 = "5:50 am to 5:54 am" 030 = "5:55 am to 5:59 am" 031 = "6:00 am to 6:04 am" 032 = "6:05 am to 6:09 am" 033 = "6:10 am to 6:14 am" 034 = "6:15 am to 6:19 am" 035 = "6:20 am to 6:24 am" 036 = "6:25 am to 6:29 am" 037 = "6:30 am to 6:34 am" 038 = "6:35 am to 6:39 am" 039 = "6:40 am to 6:44 am" 040 = "6:45 am to 6:49 am" 041 = "6:50 am to 6:54 am" 042 = "6:55 am to 6:59 am" 043 = "7:00 am to 7:04 am" 044 = "7:05 am to 7:09 am" 045 = "7:10 am to 7:14 am" 046 = "7:15 am to 7:19 am" 047 = "7:20 am to 7:24 am" 048 = "7:25 am to 7:29 am" 049 = "7:30 am to 7:34 am" 050 = "7:35 am to 7:39 am" 051 = "7:40 am to 7:44 am" 052 = "7:45 am to 7:49 am" 053 = "7:50 am to 7:54 am" 054 = "7:55 am to 7:59 am" 055 = "8:00 am to 8:04 am" 056 = "8:05 am to 8:09 am" 057 = "8:10 am to 8:14 am" 058 = "8:15 am to 8:19 am" 059 = "8:20 am to 8:24 am" 060 = "8:25 am to 8:29 am" 061 = "8:30 am to 8:34 am" 062 = "8:35 am to 8:39 am" 063 = "8:40 am to 8:44 am" 064 = "8:45 am to 8:49 am" 065 = "8:50 am to 8:54 am" 066 = "8:55 am to 8:59 am" 067 = "9:00 am to 9:04 am" 068 = "9:05 am to 9:09 am" 069 = "9:10 am to 9:14 am" 070 = "9:15 am to 9:19 am" 071 = "9:20 am to 9:24 am" 072 = "9:25 am to 9:29 am" 073 = "9:30 am to 9:34 am" 074 = "9:35 am to 9:39 am" 075 = "9:40 am to 9:44 am" 076 = "9:45 am to 9:49 am" 077 = "9:50 am to 9:54 am" 078 = "9:55 am to 9:59 am" 079 = "10:00 am to 10:04 am" 080 = "10:05 am to 10:09 am" 081 = "10:10 am to 10:14 am" 082 = "10:15 am to 10:19 am" 083 = "10:20 am to 10:24 am" 084 = "10:25 am to 10:29 am" 085 = "10:30 am to 10:34 am" 086 = "10:35 am to 10:39 am" 087 = "10:40 am to 10:44 am" 088 = "10:45 am to 10:49 am" 089 = "10:50 am to 10:54 am" 090 = "10:55 am to 10:59 am" 091 = "11:00 am to 11:09 am" 092 = "11:10 am to 11:19 am" 093 = "11:20 am to 11:29 am" 094 = "11:30 am to 11:39 am" 095 = "11:40 am to 11:49 am" 096 = "11:50 am to 11:59 am" 097 = "12:00 pm to 12:09 pm" 098 = "12:10 pm to 12:19 pm" 099 = "12:20 pm to 12:29 pm" 100 = "12:30 pm to 12:39 pm" 101 = "12:40 pm to 12:49 pm" 102 = "12:50 pm to 12:59 pm" 103 = "1:00 pm to 1:09 pm" 104 = "1:10 pm to 1:19 pm" 105 = "1:20 pm to 1:29 pm" 106 = "1:30 pm to 1:39 pm" 107 = "1:40 pm to 1:49 pm" 108 = "1:50 pm to 1:59 pm" 109 = "2:00 pm to 2:09 pm" 110 = "2:10 pm to 2:19 pm" 111 = "2:20 pm to 2:29 pm" 112 = "2:30 pm to 2:39 pm" 113 = "2:40 pm to 2:49 pm" 114 = "2:50 pm to 2:59 pm" 115 = "3:00 pm to 3:09 pm" 116 = "3:10 pm to 3:19 pm" 117 = "3:20:pm to 3:29 pm" 118 = "3:30 pm to 3:39 pm" 119 = "3:40 pm to 3:49 pm" 120 = "3:50 pm to 3:59 pm" 121 = "4:00 pm to 4:09 pm" 122 = "4:10 pm to 4:19 pm" 123 = "4:20 pm to 4:29 pm" 124 = "4:30 pm to 4:39 pm" 125 = "4:40 pm to 4:49 pm" 126 = "4:50 pm to 4:59 pm" 127 = "5:00 pm to 5:09 pm" 128 = "5:10 pm to 5:19 pm" 129 = "5:20 pm to 5:29 pm" 130 = "5:30 pm to 5:39 pm" 131 = "5:40 pm to 5:49 pm" 132 = "5:50 pm to 5:59 pm" 133 = "6:00 pm to 6:09 pm" 134 = "6:10 pm to 6:19 pm" 135 = "6:20 pm to 6:29 pm" 136 = "6:30 pm to 6:39 pm" 137 = "6:40 pm to 6:49 pm" 138 = "6:50 pm to 6:59 pm" 139 = "7:00 pm to 7:09 pm" 140 = "7:10 pm to 7:19 pm" 141 = "7:20 pm to 7:29 pm" 142 = "7:30 pm to 7:39 pm" 143 = "7:40 pm to 7:49 pm" 144 = "7:50 pm to 7:59 pm" 145 = "8:00 pm to 8:09 pm" 146 = "8:10 pm to 8:19 pm" 147 = "8:20 pm to 8:29 pm" 148 = "8:30 pm to 8:39 pm" 149 = "8:40 pm to 8:49 pm" 150 = "8:50 pm to 8:59 pm" 151 = "9:00 pm to 9:09 pm" 152 = "9:10 pm to 9:19 pm" 153 = "9:20 pm to 9:29 pm" 154 = "9:30 pm to 9:39 pm" 155 = "9:40 pm to 9:49 pm" 156 = "9:50 pm to 9:59 pm" 157 = "10:00 pm to 10:09 pm" 158 = "10:10 pm to 10:19 pm" 159 = "10:20 pm to 10:29 pm" 160 = "10:30 pm to 10:39 pm" 161 = "10:40 pm to 10:49 pm" 162 = "10:50 pm to 10:59 pm" 163 = "11:00 pm to 11:09 pm" 164 = "11:10 pm to 11:19 pm" 165 = "11:20 pm to 11:29 pm" 166 = "11:30 pm to 11:39 pm" 167 = "11:40 pm to 11:59 pm" 168 = "Not used" ; VALUE lvtimea (default=32) 1 = "Allocated" ; VALUE trvtime (default=32) 000 = "Not in universe (Under 16 years, ESR n" /* ot 1 and not 4, or TRVMNS = 11) */ 120 = "topcode" ; VALUE trvtimea (default=32) 1 = "Allocated" ; VALUE layoff (default=32) 1 = "Yes, on layoff" 2 = "No" 3 = "Not reported" ; VALUE absent (default=32) 1 = "Yes, temporarily absent from work" 2 = "No" 3 = "Not reported" ; VALUE recall (default=32) 1 = "Yes" 2 = "No" 3 = "Not reported" ; VALUE lookwrk (default=32) 1 = "Yes, looking for work in last 4 weeks" 2 = "No" 3 = "Not reported" ; VALUE backwrk (default=32) 1 = "Yes, could have gone to work" 2 = "No, because of temporary illness" 3 = "No, because of other reasons (in schoo" /* l, etc.) */ 4 = "Not reported" ; VALUE lastwrk (default=32) 1 = "1995 to 2000" 2 = "1994 or earlier, or never worked" ; VALUE lastwrka (default=32) 1 = "Allocated" ; VALUE indcen (default=32) 000 = "Not in universe (Under 16 years or LAS" /* TWRK = 2) */ ; VALUE indcena (default=32) 1 = "Allocated" ; VALUE $indnaic (default=32) "0000000" = "Not in universe (Under 16 years or LAS" /* TWRK = 2) */ ; VALUE occcen (default=32) 000 = "Not in universe (Under 16 years or LAS" /* TWRK = 2) */ ; VALUE occcena (default=32) 1 = "Allocated" ; VALUE $occsoc (default=32) "00-0000" = "Not in universe (Under 16 years or LAS" /* TWRK = 2) */ ; VALUE clwkr (default=32) 1 = "Employee of private for-profit company" 2 = "Employee of private not-for- profit co" /* mpany */ 3 = "Employee of local government" 4 = "Employee of state government" 5 = "Employee of federal government" 6 = "Self-employed in unincorporated busine" /* ss or company */ 7 = "Self-employed in incorporated business" /* or company */ 8 = "Unpaid family worker" ; VALUE clwkra (default=32) 1 = "Allocated" ; VALUE wrklyr (default=32) 1 = "Yes" 2 = "No" ; VALUE wrklyra (default=32) 1 = "Allocated" ; VALUE weeks (default=32) 00 = "Not in universe (Under 16 years or WRK" /* LYR = 0 or 2) */ ; VALUE weeksa (default=32) 1 = "Allocated" ; VALUE hours (default=32) 00 = "Not in universe (Under 16 years or WRK" /* LYR = 0 or 2) */ ; VALUE hoursa (default=32) 1 = "Allocated" ; VALUE incws (default=32) 175000 = "Topcode" ; VALUE incwsa (default=32) 1 = "Allocated" ; VALUE incse (default=32) 000001 = "$1 or break even" 126000 = "Topcode" ; VALUE incsea (default=32) 1 = "Allocated" ; VALUE incint (default=32) 000001 = "$1 or break even" 050000 = "Topcode" ; VALUE incinta (default=32) 1 = "Allocated" ; VALUE incss (default=32) 18000 = "Topcode" ; VALUE incssa (default=32) 1 = "Allocated" ; VALUE incssi (default=32) 13800 = "Topcode" ; VALUE incssia (default=32) 1 = "Allocated" ; VALUE incpa (default=32) 12300 = "Topcode" ; VALUE incpaa (default=32) 1 = "Allocated" ; VALUE incret (default=32) 052000 = "Topcode" ; VALUE increta (default=32) 1 = "Allocated" ; VALUE incoth (default=32) 037800 = "Topcode" ; VALUE incotha (default=32) 1 = "Allocated" ; VALUE inctot (default=32) -019998 = "Loss of $19,998 or more" 0000001 = "$1 or break even" 5000000 = "$5,000,000 or more" ; VALUE inctota (default=32) 1 = "Allocated" ; VALUE earns (default=32) -009999 = "Loss of $9,999 or more" 0000001 = "$1 or break even" 0310000 = "$310,000 or more" ; VALUE poverty (default=32) 000 = "Not in universe (Institutional GQ; in " /* college dormitories or military quarters; unrelated children under 15 years) */ 001 = "Less than 1.0%" 501 = "500% or more" ; proc print data=library.pums00 (obs=6); FORMAT rectype $rectype. sample sample. state state. region region. division division. msacmsa1 msacmsan. areatyp1 areatypn. persons persons. unittype unittype. hsub hsub. haug haug. vacstat vacstat. vacstata vacstata. tenure tenure. tenurea tenurea. bldgsz bldgsz. yrbuilt yrbuilt. yrbuilta yrbuilta. yrmoved yrmoved. yrmoveda yrmoveda. rooms rooms. roomsa roomsa. bedrms bedrms. bedrmsa bedrmsa. cplumb cplumb. cplumba cplumba. ckitch ckitch. ckitcha ckitcha. phone phone. phonea phonea. fuel fuel. fuela fuela. vehicl vehicl. vehicla vehicla. busines busines. businesa businesa. acres acres. acresa acresa. agsales agsales. agsalesa agsalesa. elec elec. eleca eleca. gas gas. gasa gasa. water water. oil oil. rent rent. renta renta. meals meals. mealsa mealsa. mortg1 mortg1L. mortg1a mortg1a. mrt1amt mrt1amt. mrt1amta mrt1amta. mortg2 mortg2L. mortg2a mortg2a. mrt2amt mrt2amt. mrt2amta mrt2amta. taxincl taxincl. taxincla taxincla. taxamt taxamt. taxamta taxamta. insincl insincl. insincla insincla. insamt insamt. insamta insamta. condfee condfee. condfeea condfeea. value value. valuea valuea. mhloan mhloan. mhloana mhloana. mhcost mhcost. mhcosta mhcosta. hht hht. p65 p65L. p18 p18L. npf npf. noc noc. nrc nrc. psf psf. paoc paoc. parc parc. sval sval. smoc smoc. smocapi smocapi. srnt srnt. grent grent. grapi grapi. fnf fnf. hhl hhl. lngi lngi. wif wif. empstat empstat. workexp workexp. hinc hinc. finc finc. rectype $rectypex. paug paug. ddp ddp. relate relate. relatea relatea. oc oc. rc rc. paocf paocf. sex sex. sexa sexa. age age. agea agea. hispan hispan. hispana hispana. numrace numrace. white white. black black. aian aian. asian asian. nhpi nhpi. other other. race1 race1L. race2 race2L. race3 race3L. racea racea. marstat marstat. marstata marstata. msp msp. sfn sfn. sfrel sfrel. enroll enroll. enrolla enrolla. grade grade. gradea gradea. educ educ. educa educa. anca anca. ancr ancr. speak speak. speaka speaka. lang1 lang1L. langa langa. engabil engabil. engabila engabila. poba poba. citizen citizen. yr2us yr2us. yr2usa yr2usa. mob mob. moba moba. migst1 migst1L. migsta migsta. migpuma1 migpumaa. migarea1 migareaa. migcma1 migcma1L. sensory sensory. physcl physcl. physcla physcla. mental mental. mentala mentala. slfcare slfcare. slfcarea slfcarea. abgo abgo. abgoa abgoa. abwork abwork. abworka abworka. disable disable. grandc grandc. grandca grandca. rspnsbl rspnsbl. rspnsbla rspnsbla. howlong howlong. howlonga howlonga. miltary miltary. miltarya miltarya. vps1 vps1L. vps2 vps2L. vps3 vps3L. vps4 vps4L. vps5 vps5L. vps6 vps6L. vps7 vps7L. vps8 vps8L. vps9 vps9L. vpsa vpsa. milyrs milyrs. milyrsa milyrsa. vpsr vpsr. esr esr. esra esra. esp esp. powst1 powst1L. powsta powsta. powpuma1 powpumaa. powarea1 powareaa. powcma1 powcma1L. powpma1 powpma1L. trvmns trvmns. trvmnsa trvmnsa. carpool carpool. carpoola carpoola. lvtime lvtime. lvtimea lvtimea. trvtime trvtime. trvtimea trvtimea. layoff layoff. absent absent. recall recall. lookwrk lookwrk. backwrk backwrk. lastwrk lastwrk. lastwrka lastwrka. indcen indcen. indcena indcena. indnaics $indnaic. occcen occcen. occcena occcena. occsoc $occsoc. clwkr clwkr. clwkra clwkra. wrklyr wrklyr. wrklyra wrklyra. weeks weeks. weeksa weeksa. hours hours. hoursa hoursa. incws incws. incwsa incwsa. incse incse. incsea incsea. incint incint. incinta incinta. incss incss. incssa incssa. incssi incssi. incssia incssia. incpa incpa. incpaa incpaa. incret incret. increta increta. incoth incoth. incotha incotha. inctot inctot. inctota inctota. earns earns. poverty poverty. ; proc contents data=library.pums00; /* Copyright 2006 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. */