covid19sf_geo | R Documentation |
Medical provider confirmed COVID-19 cases and confirmed COVID-19 related deaths in San Francisco, CA aggregated by several different geographic areas and normalized by 2018 American Community Survey (ACS) 5-year estimates for population data to calculate rate per 10,000 residents. More information about the data available here
covid19sf_geo
An object class sf and data.frame with 8 variables.
Area type, c("ZCTA", "Analysis Neighborhood", "Census Tract", "Citywide")
area id
The count of cases in the area
The rate of cases in the area, calculated as (count/acs_population) * 10000 which is a rate per 10,000 residents
The number of cases in the area
The population from the latest 5-year estimates from the American Community Survey (2014-2018))
Last update of the data in POSIXc format)
The area polygon data)
The dataset contains a summary of covid19 cases in San Francisco by geographic area
San Francisco, Department of Public Health - Population Health Division through San Francisco Opne Data protal website.
data(covid19sf_geo)
head(covid19sf_geo)
library(sf)
# Ploting SF Covid19 counts using base plot function
plot(covid19sf_geo[which(covid19sf_geo$area_type == "Census Tract"),
c("rate", "geometry")],
main = "Covid19 Cases Rate per 10,000 by Census Tract")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.