This example will show you how to setup the tidycensus
package in R
citation(package = "tidycensus")
##
## To cite package 'tidycensus' in publications use:
##
## Kyle Walker (2020). tidycensus: Load US Census Boundary and Attribute
## Data as 'tidyverse' and 'sf'-Ready Data Frames. R package version
## 0.9.5. https://CRAN.R-project.org/package=tidycensus
##
## A BibTeX entry for LaTeX users is
##
## @Manual{,
## title = {tidycensus: Load US Census Boundary and Attribute Data as 'tidyverse' and
## 'sf'-Ready Data Frames},
## author = {Kyle Walker},
## year = {2020},
## note = {R package version 0.9.5},
## url = {https://CRAN.R-project.org/package=tidycensus},
## }
tidycensus
using install.packages("tidycensus", dep=T)
library(tidycensus)
tidycensus::census_api_key(key = "yourkeyhere", install = T)
library(tidycensus)
v15_Profile <- load_variables(2017 , "acs5/profile", cache = TRUE) #demographic profile tables
v15_Profile[grep(x = v15_Profile$label, "Built 2000 to 2009"), c("name", "label")]
name <chr> | |
---|---|
DP04_0019 | |
DP04_0019P |
I see that the variable DP04_0019P
is the Percentage estimate for the % of houses built between 2000 and 2009. Alternatively, you can go to the Census’s list of variables for the ACS Data Profile tables here and search.
I can extract the variable, in this case for Texas counties and their associated geographies using:
Below, I use the mapview
library to quikly map the data. You must have mapview
installed for this to work
library(mapview)
mapview(mydat["DP04_0019PE"], legend = T, layer.name = "% Housing built 2000 to 2009")