uclalawcovid19behindbars / facility_data

Prison and jail facility information
https://uclacovidbehindbars.org/
GNU General Public License v3.0
2 stars 3 forks source link

Populate missing Feb20 population for federal facilities #28

Closed erika-tyagi closed 3 years ago

erika-tyagi commented 3 years ago

There are several hundred federal facilities missing Population.Feb20 data (so don't have rates on the website). There's a waybackmachine archive from 1/15/20 here with BOP facility population data that can be used to populate many (but not all) of these.

read_scrape_data() %>% 
    filter(is.na(Population.Feb20)) %>%
    filter(Jurisdiction == "federal")

Prioritizing facilities where we're currently scraping cases/deaths data probably makes sense – but this will almost certainly involve adding new spellings that will also be useful for this issue: https://github.com/uclalawcovid19behindbars/facility_data/issues/25.