atuscps: Current Population Survey for ATUS Households (2003-2016)

Description Usage Format Source Examples

Description

This is a 181,335 by 13 data frame containing information collected in the CPS about all individuals who were selected for and responded to the ATUS. The 'tucaseid' variable identifies unique households. Note that the information collected in this dataset was done so 2 to 5 months before the ATUS interview. Variables containing no more than 80% values missing were considered for inclusion, especially those found on the ATUS Frequently Used Variables list. The original CPS-ATUS file online contains information on all household members selected to participate in the ATUS; for the purpose of minimizing the size of the R package, we removed all non-respondents.

Usage

1

Format

A data frame with 181,335 observations on the following variables:

tucaseid

household id

region

region of household (definitions are listed in Appendix A of codebook) ('gereg')

state

state of household ('gestfips')

sex

respondent sex ('pesex')

age

respondent age ('prtage'); prior to May 2004, 80 meant age 80+, afterwards, 85 meant age 85+

edu

respondent education level, only available for adults ('peeduca')

race

respondent race ('ptdtrace')

hispanic

respondent identifies as hispanic? ('pehspnon')

country_born

respondent's country of birth ('penatvty'), "US" means continental U.S. and "non-US" means otherwise

citizen

citizenship status of respondent ('prcitshp')

marital

respondent's marital status ('pemaritl')

home_type

rent or own home ('hetenure')

famincome

income in dollars of all family members aged 15+ in the past 12 months including work earnings, pensions, and dividends ('hefaminc' and 'hufaminc'), see codebook for details about topcoding, which has changed in October 2003

Source

ATUS-CPS data file from https://www.bls.gov/tus/datafiles_0316.htm with code book at https://www.bls.gov/tus/atuscpscodebk0316.pdf. A list of Frequently Used Variables can be found at https://www.bls.gov/tus/freqvariables.pdf.

Examples

1
2
3
4
5
6
7
8
9
data(atuscps)

# distribution of households across regions of the U.S.
# note that stratified sampling was done
barplot(table(atuscps$region))

barplot(table(atuscps$race), horiz=TRUE, las=1)

hist(atuscps$age)

atus documentation built on May 1, 2019, 9:21 p.m.

Related to atuscps in atus...