1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/ar_stl_race.R
\docType{data}
\name{ar_stl_race}
\alias{ar_stl_race}
\title{Race in St. Louis by Census Tract, 2017}
\format{
A data frame with 106 rows and 24 variables:
\describe{
\item{GEOID}{full GEOID string}
\item{STATEFP}{state FIPS code}
\item{COUNTYFP}{county FIPS code}
\item{TRACTCE}{tract FIPS code}
\item{NAMELSAD}{tract name}
\item{ALAND}{area of tract land, square meters}
\item{AWATER}{area of tract water, square meters}
\item{TOTAL_E}{total populaton count, estimated}
\item{TOTAL_M}{total populaton count, margin of error}
\item{WHITE_E}{white populaton count, estimated}
\item{WHITE_M}{white populaton count, margin of error}
\item{BLACK_E}{black populaton count, estimated}
\item{BLACK_M}{black populaton count, margin of error}
\item{AIAN_E}{american indian and alskan native populaton count, estimated}
\item{AIAN_M}{american indian and alskan native populaton count, margin of error}
\item{ASIAN_E}{asian populaton count, estimated}
\item{ASIAN_M}{asian populaton count, margin of error}
\item{NHPI_E}{native hawaiian and pacific islander populaton count, estimated}
\item{NHPI_M}{native hawaiian and pacific islander populaton count, margin of error}
\item{OTHER_E}{other race populaton count, estimated}
\item{OTHER_M}{other race populaton count, margin of error}
\item{TWOPLUS_E}{two or more races populaton count, estimated}
\item{TWOPLUS_M}{two or more races populaton count, margin of error}
\item{geometry}{simple features geometry}
}
}
\source{
\code{tidycensus} package
}
\usage{
data(ar_stl_race)
}
\description{
A simple features data set containing the geometry and associated attributes
for the 2013-2017 American Community Survey estimates for race in St. Louis.
}
\examples{
str(ar_stl_race)
head(ar_stl_race)
summary(ar_stl_race$ALAND)
}
\keyword{datasets}
|