log using pums00, text replace set mem 500m /*------------------------------------------------ by Jean Roth Wed Jul 5 11:02:05 EDT 2006 Please report errors to jroth@nber.org NOTE: This program is distributed under the GNU GPL. See end of this file and http://www.gnu.org/licenses/ for details. Run with do pums00 . PUMS raw data has a hierarchical structure. A household records is followed by its person records. This program produces a person level dataset with household data appended. Remember, household and is repeated for each person in the dataset. PUMS 5pct homepage: http://www.census.gov/Press-Release/www/2003/PUMS5.html FTP 5pct page: http://ftp2.census.gov/census_2000/datasets/PUMS/FivePercent/ `1' refers to type of PUMS file: 1% or 5% `2' refers to the two-character state abbreviation `3' refers to the FIPS state code `4' refers to state such as District_of_Columbia ----------------------------------------------- */ program define pct /* The following link should contain the complete path and name of the unzipped raw data file. */ local dat_name "/homes/data/PUMS/2000/`1'pct/pums`1'_`3'.txt" /* The following line should contain the path to your output '.dta' file */ local dta_name "~/bulk/pums`1'_`2'.dta" /* The following line should contain the path to the data dictionary file */ local dct_name "/homes/data/PUMS/2000/pums00.dct" display "`1` = `1' 2 -> `2' 3 -> `3' 4 -> `4'" display "dat_name = `dat_name'" display "dta_name = `dta_name'" display "dct_name = `dct_name'" quietly infile using "`dct_name'", using("`dat_name'") clear replace serialno = serialno[_n-1] if rectype == "P" replace sample = sample[_n-1] if rectype == "P" replace state = state[_n-1] if rectype == "P" replace region = region[_n-1] if rectype == "P" replace division = division[_n-1] if rectype == "P" replace puma5 = puma5[_n-1] if rectype == "P" replace puma1 = puma1[_n-1] if rectype == "P" replace msacmsa5 = msacmsa5[_n-1] if rectype == "P" replace msapmsa5 = msapmsa5[_n-1] if rectype == "P" replace msacmsa1 = msacmsa1[_n-1] if rectype == "P" replace msapmsa1 = msapmsa1[_n-1] if rectype == "P" replace areatyp5 = areatyp5[_n-1] if rectype == "P" replace areatyp1 = areatyp1[_n-1] if rectype == "P" replace totpuma5 = totpuma5[_n-1] if rectype == "P" replace lndpuma5 = lndpuma5[_n-1] if rectype == "P" replace totpuma1 = totpuma1[_n-1] if rectype == "P" replace lndpuma1 = lndpuma1[_n-1] if rectype == "P" replace subsampl = subsampl[_n-1] if rectype == "P" replace hweight = hweight[_n-1] if rectype == "P" replace persons = persons[_n-1] if rectype == "P" replace unittype = unittype[_n-1] if rectype == "P" replace hsub = hsub[_n-1] if rectype == "P" replace haug = haug[_n-1] if rectype == "P" replace vacstat = vacstat[_n-1] if rectype == "P" replace vacstata = vacstata[_n-1] if rectype == "P" replace tenure = tenure[_n-1] if rectype == "P" replace tenurea = tenurea[_n-1] if rectype == "P" replace bldgsz = bldgsz[_n-1] if rectype == "P" replace bldgsza = bldgsza[_n-1] if rectype == "P" replace yrbuilt = yrbuilt[_n-1] if rectype == "P" replace yrbuilta = yrbuilta[_n-1] if rectype == "P" replace yrmoved = yrmoved[_n-1] if rectype == "P" replace yrmoveda = yrmoveda[_n-1] if rectype == "P" replace rooms = rooms[_n-1] if rectype == "P" replace roomsa = roomsa[_n-1] if rectype == "P" replace bedrms = bedrms[_n-1] if rectype == "P" replace bedrmsa = bedrmsa[_n-1] if rectype == "P" replace cplumb = cplumb[_n-1] if rectype == "P" replace cplumba = cplumba[_n-1] if rectype == "P" replace ckitch = ckitch[_n-1] if rectype == "P" replace ckitcha = ckitcha[_n-1] if rectype == "P" replace phone = phone[_n-1] if rectype == "P" replace phonea = phonea[_n-1] if rectype == "P" replace fuel = fuel[_n-1] if rectype == "P" replace fuela = fuela[_n-1] if rectype == "P" replace vehicl = vehicl[_n-1] if rectype == "P" replace vehicla = vehicla[_n-1] if rectype == "P" replace busines = busines[_n-1] if rectype == "P" replace businesa = businesa[_n-1] if rectype == "P" replace acres = acres[_n-1] if rectype == "P" replace acresa = acresa[_n-1] if rectype == "P" replace agsales = agsales[_n-1] if rectype == "P" replace agsalesa = agsalesa[_n-1] if rectype == "P" replace elec = elec[_n-1] if rectype == "P" replace eleca = eleca[_n-1] if rectype == "P" replace gas = gas[_n-1] if rectype == "P" replace gasa = gasa[_n-1] if rectype == "P" replace water = water[_n-1] if rectype == "P" replace watera = watera[_n-1] if rectype == "P" replace oil = oil[_n-1] if rectype == "P" replace oila = oila[_n-1] if rectype == "P" replace rent = rent[_n-1] if rectype == "P" replace renta = renta[_n-1] if rectype == "P" replace meals = meals[_n-1] if rectype == "P" replace mealsa = mealsa[_n-1] if rectype == "P" replace mortg1 = mortg1[_n-1] if rectype == "P" replace mortg1a = mortg1a[_n-1] if rectype == "P" replace mrt1amt = mrt1amt[_n-1] if rectype == "P" replace mrt1amta = mrt1amta[_n-1] if rectype == "P" replace mortg2 = mortg2[_n-1] if rectype == "P" replace mortg2a = mortg2a[_n-1] if rectype == "P" replace mrt2amt = mrt2amt[_n-1] if rectype == "P" replace mrt2amta = mrt2amta[_n-1] if rectype == "P" replace taxincl = taxincl[_n-1] if rectype == "P" replace taxincla = taxincla[_n-1] if rectype == "P" replace taxamt = taxamt[_n-1] if rectype == "P" replace taxamta = taxamta[_n-1] if rectype == "P" replace insincl = insincl[_n-1] if rectype == "P" replace insincla = insincla[_n-1] if rectype == "P" replace insamt = insamt[_n-1] if rectype == "P" replace insamta = insamta[_n-1] if rectype == "P" replace condfee = condfee[_n-1] if rectype == "P" replace condfeea = condfeea[_n-1] if rectype == "P" replace value = value[_n-1] if rectype == "P" replace valuea = valuea[_n-1] if rectype == "P" replace mhloan = mhloan[_n-1] if rectype == "P" replace mhloana = mhloana[_n-1] if rectype == "P" replace mhcost = mhcost[_n-1] if rectype == "P" replace mhcosta = mhcosta[_n-1] if rectype == "P" replace hht = hht[_n-1] if rectype == "P" replace p65 = p65[_n-1] if rectype == "P" replace p18 = p18[_n-1] if rectype == "P" replace npf = npf[_n-1] if rectype == "P" replace noc = noc[_n-1] if rectype == "P" replace nrc = nrc[_n-1] if rectype == "P" replace psf = psf[_n-1] if rectype == "P" replace paoc = paoc[_n-1] if rectype == "P" replace parc = parc[_n-1] if rectype == "P" replace sval = sval[_n-1] if rectype == "P" replace smoc = smoc[_n-1] if rectype == "P" replace smocapi = smocapi[_n-1] if rectype == "P" replace srnt = srnt[_n-1] if rectype == "P" replace grent = grent[_n-1] if rectype == "P" replace grapi = grapi[_n-1] if rectype == "P" replace fnf = fnf[_n-1] if rectype == "P" replace hhl = hhl[_n-1] if rectype == "P" replace lngi = lngi[_n-1] if rectype == "P" replace wif = wif[_n-1] if rectype == "P" replace empstat = empstat[_n-1] if rectype == "P" replace workexp = workexp[_n-1] if rectype == "P" replace hinc = hinc[_n-1] if rectype == "P" replace finc = finc[_n-1] if rectype == "P" keep if rectype=="P" *Everything below this point are value labels #delimit ; ; label values sample sample; label define sample 2 "1% sample" ; label values state state; label define state 72 "Puerto Rico" ; label values region region; label define region 1 "Northeast" 2 "Midwest" 3 "South" 4 "West" ; label values division division; label define division 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" ; label values msacmsa1 msacmsan; label define msacmsan 9997 "Mixed MSA/CMSA and nonmetropolitan territory" 9998 "2 or more MSAs/CMSAs" 9999 "Not in metropolitan area" ; label values msapmsa1 msapmsan; label define msapmsan 9997 "Mixed MSA/PMSA and nonmetropolitan territory" 9998 "2 or more MSAs/PMSAs" 9999 "Not in metropolitan area" ; label values areatyp1 areatypn; label define areatypn 11 "Contains only metropolitan territory inside central city (MSA part of fully-identified MSA)" 12 "Contains only metropolitan territory outside central city (MSA part of fully-identified MSA)" 13 "Contains only metropolitan territory both inside and outside central city (MSA part of fully identified MSA)" 14 "Contains an entire MSA (and no other territory)" 21 "Contains only metropolitan territory inside central city (MSA part of partially-identified MSA)" 22 "Contains only metropolitan territory outside central city (MSA part of partially-identified MSA)" 23 "Contains only metropolitan territory both inside and outside central city (MSA part of partially-identified MSA)" 31 "Contains only metropolitan territory inside central city (PMSA part of fully-identified PMSA and fully-identified CMSA)" 32 "Contains only metropolitan territory outside central city (PMSA part of fully-identified PMSA and fully-identified CMSA)" 33 "Contains only metropolitan territory both 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 inside central city (PMSA part of fully-identified PMSA and partially-identified CMSA)" 42 "Contains only metropolitan territory outside central city (PMSA part of fully-identified PMSA and partially-identified CMSA)" 43 "Contains only metropolitan territory both 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 inside central city (PMSA part of partially-identified PMSA and partially-identified CMSA)" 52 "Contains only metropolitan territory outside central city (PMSA part of partially-identified PMSA and partially-identified CMSA)" 53 "Contains only metropolitan territory both inside and outside central city (PMSA part of partially-identified PMSA and partially-identified CMSA)" 70 "Contains both metropolitan and nonmetropolitan territory" 80 "Contains only metropolitan territory in two or more partial and/or entire MSAs/PMSAs/CMSAs" 90 "Contains only nonmetropolitan territory" ; label values persons persons; label define persons 1 "Householder living alone or any person in group quarters" ; label values unittype unittype; label define unittype 1 "Institutional group quarters" 2 "Noninstitutional group quarters" ; label values hsub hsub; label define hsub 1 "Substituted" ; label values haug haug; label define haug 1 "Augmented" ; label values vacstat vacstat; label define vacstat 1 "For rent" 2 "For sale only" 3 "Rented or sold, not occupied" 4 "For seasonal, recreational or occasional use" 5 "For migrant workers" 6 "Other vacant" ; label values vacstata vacstata; label define vacstata 1 "Allocated" ; label values tenure tenure; label define tenure 1 "Owned by you or someone in this household with a mortgage or loan" 2 "Owned by you or someone in this household free and clear (without a mortgage or loan)" 3 "Rented for cash rent" 4 "Occupied without payment of cash rent" ; label values tenurea tenurea; label define tenurea 1 "Allocated" ; label values bldgsz bldgsz; label define bldgsz 01 "A mobile home" 02 "A one-family house detached from any other 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." ; label values bldgsza bldgsza; label define bldgsza 1 "Allocated" ; label values yrbuilt yrbuilt; label define yrbuilt 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" ; label values yrbuilta yrbuilta; label define yrbuilta 1 "Allocated" ; label values yrmoved yrmoved; label define yrmoved 1 "1999 or 2000" 2 "1995 to 1998" 3 "1990 to 1994" 4 "1980 to 1989" 5 "1970 to 1979" 6 "1969 or earlier" ; label values yrmoveda yrmoveda; label define yrmoveda 1 "Allocated" ; label values rooms rooms; label define rooms 9 "9 or more rooms" ; label values roomsa roomsa; label define roomsa 1 "Allocated" ; label values bedrms bedrms; label define bedrms 5 "5 or more bedrooms" ; label values bedrmsa bedrmsa; label define bedrmsa 1 "Allocated" ; label values cplumb cplumb; label define cplumb 1 "Yes, have all three facilites" 2 "No" ; label values cplumba cplumba; label define cplumba 1 "Allocated" ; label values ckitch ckitch; label define ckitch 1 "Yes, have all three facilites" 2 "No" ; label values ckitcha ckitcha; label define ckitcha 1 "Allocated" ; label values phone phone; label define phone 1 "Yes" 2 "No" ; label values phonea phonea; label define phonea 1 "Allocated" ; label values fuel fuel; label define fuel 1 "Gas: from underground pipes serving neighborhood" 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" ; label values fuela fuela; label define fuela 1 "Allocated" ; label values vehicl vehicl; label define vehicl 6 "6 or more vehicles" ; label values vehicla vehicla; label define vehicla 1 "Allocated" ; label values busines busines; label define busines 1 "Yes" 2 "No" ; label values businesa businesa; label define businesa 1 "Allocated" ; label values acres acres; label define acres 1 "Less than 1 acre" 2 "1.0 to 9.9 acres" 3 "10 acres or more" ; label values acresa acresa; label define acresa 1 "Allocated" ; label values agsales agsales; label define agsales 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" ; label values agsalesa agsalesa; label define agsalesa 1 "Allocated" ; label values elec elec; label define elec 0000 "Included in rent or condominium fee" 0001 "No charge or not used" 0002 "$1 or $2" 4800 "topcode" ; label values eleca eleca; label define eleca 1 "Allocated" ; label values gas gas; label define gas 0000 "Included in rent or condominium fee" 0001 "No charge or not used" 0002 "$1 or $2" 3000 "topcode" ; label values gasa gasa; label define gasa 1 "Allocated" ; label values water water; label define water 0000 "Included in rent or condominium fee" 0001 "No charge or not used" 0002 "$1 or $2" 2000 "topcode" ; label values watera watera; label define watera 1 "Allocated" ; label values oil oil; label define oil 0000 "Included in rent or condominium fee" 0001 "No charge or not used" 0002 "$1 or $2" 2100 "topcode" ; label values oila oila; label define oila 1 "Allocated" ; label values rent rent; label define rent 1700 "topcode" ; label values renta renta; label define renta 1 "Allocated" ; label values meals meals; label define meals 1 "Yes" 2 "No" ; label values mealsa mealsa; label define mealsa 1 "Allocated" ; label values mortg1 mortg1l; label define mortg1l 1 "Yes, mortgage, deed of trust or similar debt" 2 "Yes, contract to purchase" 3 "No" ; label values mortg1a mortg1a; label define mortg1a 1 "Allocated" ; label values mrt1amt mrt1amt; label define mrt1amt 00000 "No regular payment" 03000 "topcode" ; label values mrt1amta mrt1amta; label define mrt1amta 1 "Allocated" ; label values mortg2 mortg2l; label define mortg2l 1 "Yes, a 2nd mortgage" 2 "Yes, a home equity loan" 3 "No" 4 "Both a 2nd mortgage and a home equity loan" ; label values mortg2a mortg2a; label define mortg2a 1 "Allocated" ; label values mrt2amt mrt2amt; label define mrt2amt 00000 "No regular payment" 01100 "topcode" ; label values mrt2amta mrt2amta; label define mrt2amta 1 "Allocated" ; label values taxincl taxincl; label define taxincl 1 "Yes, taxes included in mortgage payment" 2 "No, taxes paid separately, or taxes not required" ; label values taxincla taxincla; label define taxincla 1 "Allocated" ; label values taxamt taxamt; label define taxamt 00 "Not in universe (GQ, renter-occupied or 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" ; label values taxamta taxamta; label define taxamta 0 "Not allocated" 1 "Allocated" ; label values insincl insincl; label define insincl 1 "Yes, insurance included in mortgage payment" 2 "No, insurance paid separately, or no insurance" ; label values insincla insincla; label define insincla 0 "Not allocated" 1 "Allocated" ; label values insamt insamt; label define insamt 2500 "Topcode" ; label values insamta insamta; label define insamta 0 "Not allocated" 1 "Allocated" ; label values condfee condfee; label define condfee 0000 "Not a condominium" 0720 "Topcode" ; label values condfeea condfeea; label define condfeea 0 "Not allocated" 1 "Allocated" ; label values value value; label define value 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" ; label values valuea valuea; label define valuea 1 "Allocated" ; label values mhloan mhloan; label define mhloan 1 "Yes" 2 "No" ; label values mhloana mhloana; label define mhloana 1 "Allocated" ; label values mhcost mhcost; label define mhcost 00000 "No cost" 10000 "topcode" ; label values mhcosta mhcosta; label define mhcosta 1 "Allocated" ; label values hht hht; label define hht 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 householder, living alone" 7 "Nonfamily household: Female householder, not living alone" ; label values p65 p65l; label define p65l 00 "Not in universe (vacant or GQ)" ; label values p18 p18l; label define p18l 00 "Not in universe (vacant or GQ)" ; label values npf npf; label define npf 00 "Not in universe (vacant, GQ, or HHT not 1-3)" ; label values noc noc; label define noc 00 "None (includes not in universe: vacant or GQ)" ; label values nrc nrc; label define nrc 00 "None (includes not in universe: vacant or GQ)" ; label values psf psf; label define psf 1 "1 or more subfamilies" ; label values paoc paoc; label define paoc 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" ; label values parc parc; label define parc 1 "With related children under 6 years only" 2 "With related children 6 to 17 years only" 3 "With related children under 6 years and 6 to 17 years" 4 "No related children under 18 years" ; label values sval sval; label define sval 1 "Specified unit" ; label values smoc smoc; label define smoc 00000 "Not in universe (vacant, GQ, no costs, not owner-occupied)" 25000 "$25,000 or more" ; label values smocapi smocapi; label define smocapi 000 "Not in universe (vacant, GQ, no costs, not owner-occupied, or household income less than $1)" 101 "101% or more" ; label values srnt srnt; label define srnt 1 "Specified" ; label values grent grent; label define grent 0000 "Not in universe (Vacant, GQ, owner-occupied, not rented for cash rent)" 9999 "$9,999 or more" ; label values grapi grapi; label define grapi 000 "Not in universe (vacant, GQ, owner-occupied, not rented for cash rent, or household income is not positive, or 0%)" 101 "101% or more" ; label values fnf fnf; label define fnf 1 "Farm" 2 "Nonfarm" ; label values hhl hhl; label define hhl 1 "English only" 2 "Spanish" 3 "Other Indo-European" 4 "Asian or Pacific Island" 5 "Other language" ; label values lngi lngi; label define lngi 1 "Not linguistically isolated" 2 "Linguistically isolated" ; label values wif wif; label define wif 1 "No workers in family" 2 "1 worker in family" 3 "2 workers in family" 4 "3 or more workers in famly" ; label values empstat empstat; label define empstat 1 "Married-couple family; husband in labor force, wife in labor force" 2 "Married-couple family; husband in labor 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 wife present, in labor force" 6 "Other family, male householder, no wife present, not in labor force" 7 "Other family, female householder, no husband present, in labor force" 8 "Other family, female householder, no husband present, not in labor force" ; label values workexp workexp; label define workexp 00 "Not in universe (vacant, GQ, or HHT not 1-3)" 01 "Married-couple family; householder worked full-time year-round in 1999, spouse worked full-time year-round in 1999" 02 "Married-couple family; householder worked full-time year-round in 1999, spouse worked less than full-time year-round in 1999" 03 "Married-couple family; householder worked full-time year-round in 1999, spouse did not work in 1999" 04 "Married-couple family; householder worked less than full-time year-round in 1999, spouse worked full-time year-round in 1999" 05 "Married-couple family; householder worked less than full-time year-round in 1999, spouse worked less than full-time year-round in 1999" 06 "Married-couple family; householder worked 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 wife present, householder worked full-time year-round in 1999" 11 "Other family; male householder, no wife present, householder worked less than full-time year-round in 1999" 12 "Other family; male householder, no wife present, householder did not work in 1999" 13 "Other family; female householder, no husband present, householder worked full-time year-round in 1999" 14 "Other family; female householder, no husband present, householder worked less than full-time year-round in 1999" 15 "Other family; female householder, no husband present, householder did not work in 1999" ; label values hinc hinc; label define hinc -0059999 "Loss of $59,999 or more" 00000000 "Not in universe (vacant, GQ, no income)" ; label values finc finc; label define finc -0059999 "Loss of $59,999 or more" 00000000 "Not in universe (vacant, GQ, no income)" ; label values paug paug; label define paug 1 "Augmented" ; label values ddp ddp; label define ddp 1 "No, imputed by edit" 2 "No, substituted" ; label values relate relate; label define relate 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" ; label values relatea relatea; label define relatea 1 "Allocated" ; label values oc oc; label define oc 1 "Yes, own child under 18 years" ; label values rc rc; label define rc 1 "Yes, related child under 18 years" ; label values paocf paocf; label define paocf 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" ; label values sex sex; label define sex 1 "Male" 2 "Female" ; label values sexa sexa; label define sexa 1 "Allocated" ; label values age age; label define age 90 "topcode" ; label values agea agea; label define agea 1 "Allocated" ; label values hispan hispan; label define hispan 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" ; label values hispana hispana; label define hispana 1 "Allocated" ; label values numrace numrace; label define numrace 1 "One race" 2 "Two races" 3 "Three races" 4 "Four races" 5 "Five races" 6 "Six races" ; label values white white; label define white 1 "Yes, alone or in combination with one or more other races" ; label values black black; label define black 1 "Yes, alone or in combination with one ore more other races" ; label values aian aian; label define aian 1 "Yes, alone or in combination with one ore more other races" ; label values asian asian; label define asian 1 "Yes, alone or in combination with one ore more other races" ; label values nhpi nhpi; label define nhpi 1 "Yes, alone or in combination with one ore more other races" ; label values other other; label define other 1 "Yes, alone or in combination with one ore more other races" ; label values race1 race1l; label define race1l 1 "White alone" 2 "Black or African American alone" 4 "Alaska Native alone" 5 "American Indian and Alaska Native tribes specified, and American Indian or Alaska Native, not specified, and no other races" 6 "Asian alone" 7 "Native Hawaiian and Other Pacific Islander alone" 8 "Some other race alone" 9 "Two or more major race groups" ; label values race2 race2l; label define race2l 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 tribe combinations" 31 "Alaskan Athabascan alone" 32 "Aleut alone" 33 "Eskimo alone" 34 "Tlingit-Haida alone" 35 "All specified American Indian and Alaska 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 combination with other Polynesian races" 60 "Guamanian or Chamorro alone" 61 "Other Micronesian alone or in combination with other Micronesian races" 62 "Melanesian alone or in combination with other Melanesian races" 63 "Other Native Hawaiian and Other Pacific Islander" 64 "Some other race alone" 65 "Two or more major races" ; label values race3 race3l; label define race3l 01 "Some other race alone" 02 "Other Pacific Islander alone" 03 "Other Pacific Islander; Some other race" 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 alone" 33 "American Indian and Alaska Native; Some other race" 34 "American Indian and Alaska Native; Other Asian" 35 "American Indian and Alaska Native; Filipino" 36 "American Indian and Alaska Native; Asian Indian" 37 "Black or African American alone" 38 "Black or African American; Some other race" 39 "Black or African American; Other Pacific 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 Indian" 46 "Black or African American; American Indian 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 Hawaiian" 65 "White; Asian Indian" 66 "White; American Indian and Alaska Native" 67 "White; American Indian and Alaska Native; Some other race" 68 "White; Black or African American" 69 "White; Black or African American; Some other race" 70 "White; Black or African American; American Indian and Alaska Native" 71 "All other race combinations" ; label values racea racea; label define racea 1 "Allocated" ; label values marstat marstat; label define marstat 1 "Now married" 2 "Widowed" 3 "Divorced" 4 "Separated" 5 "Never married (includes under 15 years)" ; label values marstata marstata; label define marstata 1 "Allocated" ; label values msp msp; label define msp 1 "Now married, spouse present" 2 "Now married, spouse absent" 3 "Widowed" 4 "Divorced" 5 "Separated" 6 "Never married" ; label values sfn sfn; label define sfn 1 "In subfamily #1" 2 "In subfamily #2" 3 "In subfamily #3" 4 "In subfamily #4" ; label values sfrel sfrel; label define sfrel 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" ; label values enroll enroll; label define enroll 1 "No, has not attended since February 1" 2 "Yes, public school or college" 3 "Yes, private school or college" ; label values enrolla enrolla; label define enrolla 1 "Allocated" ; label values grade grade; label define grade 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" ; label values gradea gradea; label define gradea 1 "Allocated" ; label values educ educ; label define educ 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 degree" 12 "Associate degree" 13 "Bachelor's degree" 14 "Master's degree" 15 "Professional degree" 16 "Doctorate degree" ; label values educa educa; label define educa 1 "Allocated" ; label values anca anca; label define anca 1 "Allocated" ; label values ancr ancr; label define ancr 1 "Single" 2 "Multiple" 3 "Unclassified" 4 "Not reported" ; label values speak speak; label define speak 1 "Yes" 2 "No" ; label values speaka speaka; label define speaka 1 "Allocated" ; label values lang1 lang1l; label define lang1l 000 "Not in universe (Less than 5 years or SPEAK = 2)" ; label values langa langa; label define langa 1 "Allocated" ; label values engabil engabil; label define engabil 1 "Very well" 2 "Well" 3 "Not well" 4 "Not at all" ; label values engabila engabila; label define engabila 1 "Allocated" ; label values poba poba; label define poba 1 "Allocated" ; label values citizen citizen; label define citizen 1 "Yes, born in the United States" 2 "Yes, born in Puerto Rico, Guam, U.S. Virgin 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" ; label values citizena citizena; label define citizena 1 "Allocated" ; label values yr2us yr2us; label define yr2us 0000 "Not in universe (CITIZEN = 1)" 1910 "1910 or earlier" ; label values yr2usa yr2usa; label define yr2usa 1 "Allocated" ; label values mob mob; label define mob 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. (different house in Puerto Rico or the U.S. if Puerto Rico is the state of residence)" ; label values moba moba; label define moba 1 "Allocated" ; label values migst1 migst1l; label define migst1l 000 "Not in universe (Under 5 years)" ; label values migsta migsta; label define migsta 1 "Allocated" ; label values migpuma1 migpumaa; label define migpumaa 00000 "Not in universe (Under 5 years)" 00001 "Did not live in the United States or inPuerto Rico in 1995" 00002 "Lived in Puerto Rico in 1995 and in the U.S. in 2000" ; label values migarea1 migareaa; label define migareaa 00 "Not in universe (Under 5 years)" 01 "Did not live in the United States or in Puerto Rico in 1995" 02 "Lived in Puerto Rico in 1995 and in the U.S. in 2000" 11 "Contains only metropolitan territory inside central city (MSA part of fully-identified MSA)" 12 "Contains only metropolitan territory outside central city (MSA part of fully-identified MSA)" 13 "Contains only metropolitan territory both inside and outside central city (MSA part of fully identified MSA)" 14 "Contains an entire MSA (and no other territory)" 21 "Contains only metropolitan territory inside central city (MSA part of partially-identified MSA)" 22 "Contains only metropolitan territory outside central city (MSA part of partially-identified MSA)" 23 "Contains only metropolitan territory both inside and outside central city (MSA part of partially-identified MSA)" 31 "Contains only metropolitan territory inside central city (PMSA part of fully-identified PMSA and fully-identified CMSA)" 32 "Contains only metropolitan territory outside central city (PMSA part of fully-identified PMSA and fully-identified CMSA)" 33 "Contains only metropolitan territory both 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 inside central city (PMSA part of fully-identified PMSA and partially-identified CMSA)" 42 "Contains only metropolitan territory outside central city (PMSA part of fully-identified PMSA and partially-identified CMSA)" 43 "Contains only metropolitan territory both 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 inside central city (PMSA part of partially-identified PMSA and partially-identified CMSA)" 52 "Contains only metropolitan territory outside central city (PMSA part of partially-identified PMSA and partially-identified CMSA)" 53 "Contains only metropolitan territory both inside and outside central city (PMSA part of partially-identified PMSA and partially-identified CMSA)" 70 "Contains both metropolitan and nonmetropolitan territory" 80 "Contains only metropolitan territory in two or more partial and/or entire MSAs/PMSAs/CMSAs" 90 "Contains only nonmetropolitan territory" ; label values migcma1 migcma1l; label define migcma1l 0000 "Not in universe (Under 5 years)" 0001 "Did not live in the United States or in Puerto Rico in 1995" 0002 "Lived in Puerto Rico in 1995 and in the U.S. in 2000" 9997 "Mixed MSA/CMSA and nonmetropolitan territory" 9998 "2 or more MSAs/CMSAs" 9999 "Not in metropolitan area" ; label values migpma1 migpma1l; label define migpma1l 0000 "Not in universe (Under 5 years)" 0001 "Did not live in the United States or in Puerto Rico in 1995" 0002 "Lived in Puerto Rico in 1995 and in the U.S. in 2000" 9997 "Mixed MSA/PMSA and nonmetropolitan territory" 9998 "2 or more MSAs/PMSAs" 9999 "Not in metropolitan area" ; label values sensory sensory; label define sensory 1 "Yes" 2 "No" ; label values sensorya sensorya; label define sensorya 1 "Allocated" ; label values physcl physcl; label define physcl 1 "Yes" 2 "No" ; label values physcla physcla; label define physcla 1 "Allocated" ; label values mental mental; label define mental 1 "Yes" 2 "No" ; label values mentala mentala; label define mentala 1 "Allocated" ; label values slfcare slfcare; label define slfcare 1 "Yes" 2 "No" ; label values slfcarea slfcarea; label define slfcarea 1 "Allocated" ; label values abgo abgo; label define abgo 1 "Yes" 2 "No" ; label values abgoa abgoa; label define abgoa 1 "Allocated" ; label values abwork abwork; label define abwork 1 "Yes" 2 "No" ; label values abworka abworka; label define abworka 1 "Allocated" ; label values disable disable; label define disable 1 "With a disability" 2 "Without a disability" ; label values grandc grandc; label define grandc 1 "Yes" 2 "No" ; label values grandca grandca; label define grandca 1 "Allocated" ; label values rspnsbl rspnsbl; label define rspnsbl 1 "Yes" 2 "No" ; label values rspnsbla rspnsbla; label define rspnsbla 1 "Allocated" ; label values howlong howlong; label define howlong 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" ; label values howlonga howlonga; label define howlonga 1 "Allocated" ; label values miltary miltary; label define miltary 1 "Yes, now on active dury" 2 "Yes, on active duty in the past, but not now" 3 "No, training for reserves or National Guard only" 4 "No active duty service" ; label values miltarya miltarya; label define miltarya 1 "Allocated" ; label values vps1 vps1l; label define vps1l 1 "Served in this period" ; label values vps2 vps2l; label define vps2l 1 "Served in this period" ; label values vps3 vps3l; label define vps3l 1 "Served in this period" ; label values vps4 vps4l; label define vps4l 1 "Served in this period" ; label values vps5 vps5l; label define vps5l 1 "Served in this period" ; label values vps6 vps6l; label define vps6l 1 "Served in this period" ; label values vps7 vps7l; label define vps7l 1 "Served in this period" ; label values vps8 vps8l; label define vps8l 1 "Served in this period" ; label values vps9 vps9l; label define vps9l 1 "Served in this period" ; label values vpsa vpsa; label define vpsa 1 "Allocated" ; label values milyrs milyrs; label define milyrs 1 "Less than 2 years" 2 "2 years or more" ; label values milyrsa milyrsa; label define milyrsa 1 "Allocated" ; label values vpsr vpsr; label define vpsr 00 "Not in universe (Under 18 years or no active duty military service)" 01 "August 1990 or later (including Persian Gulf War); Served in Vietnam era" 02 "August 1990 or later (including Persian Gulf War); No Vietnam era service; September 1980 or later only; Served under 2 years" 03 "August 1990 or later (including Persian Gulf War); No Vietnam era service; September 1980 or later only; Served 2 years or more" 04 "August 1990 or later (including Persian 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, no 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" ; label values esr esr; label define esr 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 work" 6 "Not in labor force" ; label values esra esra; label define esra 1 "Allocated" ; label values esp esp; label define esp 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 father; father in labor force" 6 "Living with one parent; living with father; father not in labor force" 7 "Living with one parent: living with mother; mother in labor force" 8 "Living with one parent; living with mother; mother not in labor force" ; label values powst1 powst1l; label define powst1l 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" ; label values powsta powsta; label define powsta 1 "Allocated" ; label values powpuma1 powpumaa; label define powpumaa 00000 "Not in universe (Under 16 years or ESR not 1 and not 4)" 00001 "Did not work in the United States or in Puerto Rico" ; label values powarea1 powareaa; label define powareaa 00 "Not in universe (Under 16 years or ESR not 1 and not 4)" 01 "Did not work in the United States or in Puerto Rico" 11 "Contains only metropolitan territory inside central city (MSA part of fully-identified MSA)" 12 "Contains only metropolitan territory outside central city (MSA part of fully-identified MSA)" 13 "Contains only metropolitan territory both inside and outside central city (MSA part of fully identified MSA)" 14 "Contains an entire MSA (and no other territory)" 21 "Contains only metropolitan territory inside central city (MSA part of partially-identified MSA)" 22 "Contains only metropolitan territory outside central city (MSA part of partially-identified MSA)" 23 "Contains only metropolitan territory both inside and outside central city (MSA part of partially-identified MSA)" 31 "Contains only metropolitan territory inside central city (PMSA part of fully-identified PMSA and fully-identified CMSA)" 32 "Contains only metropolitan territory outside central city (PMSA part of fully-identified PMSA and fully-identified CMSA)" 33 "Contains only metropolitan territory both 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 inside central city (PMSA part of fully-identified PMSA and partially-identified CMSA)" 42 "Contains only metropolitan territory outside central city (PMSA part of fully-identified PMSA and partially-identified CMSA)" 43 "Contains only metropolitan territory both 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 inside central city (PMSA part of partially-identified PMSA and partially-identified CMSA)" 52 "Contains only metropolitan territory outside central city (PMSA part of partially-identified PMSA and partially-identified CMSA)" 53 "Contains only metropolitan territory both inside and outside central city (PMSA part of partially-identified PMSA and partially-identified CMSA)" 70 "Contains both metropolitan and nonmetropolitan territory" 80 "Contains only metropolitan territory in two or more partial and/or entire MSAs/PMSAs/CMSAs" 90 "Contains only nonmetropolitan territory" ; label values powcma1 powcma1l; label define powcma1l 0000 "Not in universe (Under 16 years, not in labor force, unemployed, with a job but not a work)" 0001 "Did not work in the United States or in Puerto Rico" 9997 "Mixed MSA/CMSA and nonmetropolitan territory" 9998 "2 or more MSAs/CMSAs" 9999 "Not in metropolitan area" ; label values powpma1 powpma1l; label define powpma1l 0000 "Not in universe (Under 16 years, not in labor force, unemployed, with a job but not a work)" 0001 "Did not work in the United States or in Puerto Rico" 9997 "Mixed MSA/PMSA and nonmetropolitan territory" 9998 "2 or more MSAs/PMSAs" 9999 "Not in metropolitan area" ; label values trvmns trvmns; label define trvmns 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 Puerto Rico)" 04 "Subway or elevated" 05 "Railroad" 06 "Ferryboat" 07 "Taxicab" 08 "Motorcycle" 09 "Bicycle" 10 "Walked" 11 "Worked at home" 12 "Other method" ; label values trvmnsa trvmnsa; label define trvmnsa 1 "Allocated" ; label values carpool carpool; label define carpool 1 "Drove alone" 2 "2 people" 3 "3 people" 4 "4 people" 5 "5 or 6 people" 6 "7 or more people" ; label values carpoola carpoola; label define carpoola 1 "Allocated" ; label values lvtime lvtime; label define lvtime 000 "Not in universe (Under 16 years, ESR not 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" ; label values lvtimea lvtimea; label define lvtimea 1 "Allocated" ; label values trvtime trvtime; label define trvtime 000 "Not in universe (Under 16 years, ESR not 1 and not 4, or TRVMNS = 11)" 120 "topcode" ; label values trvtimea trvtimea; label define trvtimea 1 "Allocated" ; label values layoff layoff; label define layoff 1 "Yes, on layoff" 2 "No" 3 "Not reported" ; label values absent absent; label define absent 1 "Yes, temporarily absent from work" 2 "No" 3 "Not reported" ; label values recall recall; label define recall 1 "Yes" 2 "No" 3 "Not reported" ; label values lookwrk lookwrk; label define lookwrk 1 "Yes, looking for work in last 4 weeks" 2 "No" 3 "Not reported" ; label values backwrk backwrk; label define backwrk 1 "Yes, could have gone to work" 2 "No, because of temporary illness" 3 "No, because of other reasons (in school, etc.)" 4 "Not reported" ; label values lastwrk lastwrk; label define lastwrk 1 "1995 to 2000" 2 "1994 or earlier, or never worked" ; label values lastwrka lastwrka; label define lastwrka 1 "Allocated" ; label values indcen indcen; label define indcen 000 "Not in universe (Under 16 years or LASTWRK = 2)" ; label values indcena indcena; label define indcena 1 "Allocated" ; label values occcen occcen; label define occcen 000 "Not in universe (Under 16 years or LASTWRK = 2)" ; label values occcena occcena; label define occcena 1 "Allocated" ; label values clwkr clwkr; label define clwkr 1 "Employee of private for-profit company" 2 "Employee of private not-for- profit company" 3 "Employee of local government" 4 "Employee of state government" 5 "Employee of federal government" 6 "Self-employed in unincorporated business or company" 7 "Self-employed in incorporated business or company" 8 "Unpaid family worker" ; label values clwkra clwkra; label define clwkra 1 "Allocated" ; label values wrklyr wrklyr; label define wrklyr 1 "Yes" 2 "No" ; label values wrklyra wrklyra; label define wrklyra 1 "Allocated" ; label values weeks weeks; label define weeks 00 "Not in universe (Under 16 years or WRKLYR = 0 or 2)" ; label values weeksa weeksa; label define weeksa 1 "Allocated" ; label values hours hours; label define hours 00 "Not in universe (Under 16 years or WRKLYR = 0 or 2)" ; label values hoursa hoursa; label define hoursa 1 "Allocated" ; label values incws incws; label define incws 175000 "Topcode" ; label values incwsa incwsa; label define incwsa 1 "Allocated" ; label values incse incse; label define incse 000001 "$1 or break even" 126000 "Topcode" ; label values incsea incsea; label define incsea 1 "Allocated" ; label values incint incint; label define incint 000001 "$1 or break even" 050000 "Topcode" ; label values incinta incinta; label define incinta 1 "Allocated" ; label values incss incss; label define incss 18000 "Topcode" ; label values incssa incssa; label define incssa 1 "Allocated" ; label values incssi incssi; label define incssi 13800 "Topcode" ; label values incssia incssia; label define incssia 1 "Allocated" ; label values incpa incpa; label define incpa 12300 "Topcode" ; label values incpaa incpaa; label define incpaa 1 "Allocated" ; label values incret incret; label define incret 052000 "Topcode" ; label values increta increta; label define increta 1 "Allocated" ; label values incoth incoth; label define incoth 037800 "Topcode" ; label values incotha incotha; label define incotha 1 "Allocated" ; label values inctot inctot; label define inctot -019998 "Loss of $19,998 or more" 0000001 "$1 or break even" 5000000 "$5,000,000 or more" ; label values inctota inctota; label define inctota 1 "Allocated" ; label values earns earns; label define earns -009999 "Loss of $9,999 or more" 0000001 "$1 or break even" 0310000 "$310,000 or more" ; label values poverty poverty; label define poverty 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" ; #delimit cr save `dta_name' , replace end *pct 5 al 01 Alabama *pct 5 ak 02 Alaska *pct 5 az 04 Arizona *pct 5 ar 05 Arkansas *pct 5 ca 06 California *pct 5 co 08 Colorado *pct 5 ct 09 Connecticut *pct 5 de 10 Delaware *pct 5 dc 11 District_of_Columbia *pct 5 fl 12 Florida *pct 5 ga 13 Georgia *pct 5 hi 15 Hawaii *pct 5 id 16 Idaho *pct 5 il 17 Illinois *pct 5 in 18 Indiana *pct 5 ia 19 Iowa *pct 5 ks 20 Kansas *pct 5 ky 21 Kentucky *pct 5 la 22 Louisiana *pct 5 me 23 Maine *pct 5 md 24 Maryland *pct 5 ma 25 Massachusetts *pct 5 mi 26 Michigan *pct 5 mn 27 Minnesota *pct 5 ms 28 Mississippi *pct 5 mo 29 Missouri *pct 5 mt 30 Montana *pct 5 ne 31 Nebraska *pct 5 nv 32 Nevada *pct 5 nh 33 New_Hampshire *pct 5 nj 34 New_Jersey *pct 5 nm 35 New_Mexico *pct 5 ny 36 New_York *pct 5 nc 37 North_Carolina *pct 5 nd 38 North_Dakota *pct 5 oh 39 Ohio *pct 5 ok 40 Oklahoma *pct 5 or 41 Oregon *pct 5 pa 42 Pennsylvania *pct 5 ri 44 Rhode_Island *pct 5 sc 45 South_Carolina *pct 5 sd 46 South_Dakota *pct 5 tn 47 Tennessee *pct 5 tx 48 Texas *pct 5 ut 49 Utah *pct 5 vt 50 Vermont *pct 5 va 51 Virginia *pct 5 wa 53 Washington *pct 5 wv 54 West_Virginia *pct 5 wi 55 Wisconsin *pct 5 wy 56 Wyoming