openintro (version 1.7.1)

county: United States Counties

Description

Data for 3143 counties in the United States. See the countyComplete data set for additional variables.

Usage

data(county)

Arguments

Format

A data frame with 3143 observations on the following 15 variables.

name

County names.

state

State names.

% \item{\code{FIPS}}{FIPS number.}
pop2000

Population in 2000.

pop2010

Population in 2010.

fed_spend

Federal spending per capita

poverty

Percent of population in poverty.

homeownership

Homeownership rate, 2006-2010.

multiunit

Percent of housing units in multi-unit structures, 2006-2010.

income

Income per capita income.

med_income

Median income.

% \item{\code{age_5}}{Percent of population under 5 years of age.} % \item{\code{age_18}}{Percent of population under 18 years of age.} % \item{\code{female}}{Percent of population that is female.} % \item{\code{density}}{The number of people per square mile.} % \item{\code{white}}{Percent of population that is white.} % \item{\code{black}}{Percent of population that is black.} % \item{\code{pph}}{Average persons per household.}

References

~~ OpenIntro Statistics, openintro.org ~~

See Also

email, email50, countyComplete

Examples

Run this code
# NOT RUN {
data(county)

p00 <- county$pop2000
p10 <- county$pop2010
hist((p10 - p00)/p00)
# }

Run the code above in your browser using DataCamp Workspace