Please see the main README for methodological details. This document only contains output relevant to the update from the 2015 version of the index to the 2018 version.
The data is contained in a CSV file called ACS_deprivation_index_by_census_tracts.csv which is a table of census tracts listed by their FIPS ID and corresponding deprivation index. Also included for each tract are the six individual ACS measures used to create the deprivation index.
R
Use the following code to download the deprivation index data.frame directly into R:
dep_index <- 'https://github.com/geomarker-io/dep_index/raw/master/2018_dep_index/ACS_deprivation_index_by_census_tracts.rds' %>%
url() %>%
gzcon() %>%
readRDS() %>%
as_tibble()
The deprivation index is also available by zip codes, denoted using the ZIP Code Tabulation Area (ZCTA) boundaries. The value for each ZCTA is calculated as the mean of all of its intersecting census tracts. Download the 2018 file located at 2018_dep_index/ACS_deprivation_index_by_zipcode.csv
or use the above code to read it into R by replacing the RDS file name with ACS_deprivation_index_by_zipcode.rds
.