covid19sf_vaccine_geo | R Documentation |
This dataset represents the COVID-19 vaccinations given to SF residents summarized by the geographic region of their residential address. All vaccines given to SF residents are included, no matter where the vaccination took place (the vaccine may have been administered in San Francisco or outside of San Francisco). Data provides counts for people who have received at least one dose and people who have completed a vaccine series. A vaccine series is complete after an individual has received both doses of a two-dose vaccine or one dose of a one-dose vaccine. More information about the data available here
covid19sf_vaccine_geo
An object class sf and data.frame with 8 variables.
area id
Area type, c("Analysis Neighborhood", "Summary")
Count of residents in the given geographic region who has received at least one dose administered by DPH
Count of residents in the given geographic region who has received at least one dose regardless of who administered the vaccine
Count of residents in the given geographic region who has completed a vaccine series
2019 5-year American Community Survey population estimate for the given geographic region (all ages)
The total count of population that has completed a vaccine series by population estimate (acs_population)
Last update of the data in POSIXc format)
The area polygon data)
The dataset contains a summary of covid19 vaccination in San Francisco by neighborhood
San Francisco, Department of Public Health - Population Health Division through San Francisco Opne Data protal website.
data(covid19sf_vaccine_geo)
head(covid19sf_vaccine_geo)
library(sf)
library(dplyr)
df <- covid19sf_vaccine_geo %>% filter(area_type == "Analysis Neighborhood")
plot(df[, c("percent_pop_series_completed", "geometry")],
main = "San Francisco - Percentage of Fully Vaccinated Population")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.