Gary Sieling

Get a list of census fields available at the GEOID (block group) level in R

A couple of points here:

library(dplyr)
library(tidycensus) 
View(
   load_variables(year="2020", dataset="acs5", cache=TRUE) 
   %>% filter(geography == "block group") 
   %>% filter(grepl('race', concept, ignore.case=TRUE)))

Exit mobile version