Gender Inequities in COVID-19 Vaccinations

By Arun Mitra in Epidemiology COVID R Data Analytics

May 12, 2021

This post looks into the COVID-19 vaccinations in India and the respective states. The data is downloaded from COVID-19 India Tracker Website as provided in the data sources section in the methodology.

Total Vaccinations

## Warning in RColorBrewer::brewer.pal(N, "Set2"): n too large, allowed maximum for palette Set2 is 8
## Returning the palette you asked for with that many colors

## Warning in RColorBrewer::brewer.pal(N, "Set2"): n too large, allowed maximum for palette Set2 is 8
## Returning the palette you asked for with that many colors

Inequity in Vaccine Delivery among the genders

vaccine_gender_fig <- vaccine_df %>% 
  filter(State == "India") %>% 
  plot_ly(x =  ~ Date, y = ~females_prop, type = "scatter", mode = "lines") %>%
  layout(showlegend = FALSE) %>%
  add_trace(y = ~males_prop, type = "scatter", mode = "lines", name = "Male") %>% 
  layout(yaxis = list(title = 'Proportion of Total Vaccinations'))
vaccine_gender_fig
Posted on:
May 12, 2021
Length:
1 minute read, 169 words
Categories:
Epidemiology COVID R Data Analytics
See Also: