"COVID-19 Vaccine World" App Presentation

Elena Civati
05-17-2021

Why this App?

This web application is intended to help people interested in following COVID-19 vaccination trend across countries. Data are constantly up-to-date (thanks to “Our World in Data”) and can be visualized in a customizable plot or downloaded after selection of:

  • Countries of interest
  • Dates
  • Number of vaccine doses received by each person:
    • “All” includes partially and fully vaccinated people
    • “Fully” refers to people who completed the vaccination course

In the plot, for better comparison between countries, data are shown as a percentage of the total country population, but hovering on it allows to see the actual number of vaccinated people.
Moreover, mean global values for partially and fully vaccinated people are shown as a grey area on the plot, and can be downloaded as well in a separate tab.

App is hosted at https://elenena810.shinyapps.io/covid_vaccine_world

R code for this app can be found on GitHub

This presentation was built with R presenter

Plot Examples

Images saved with the Plotly screenshot function integrated in the app plot:

plot

plot

Here is an example of how filtered and downloaded data (total number of vaccinated people in Spain from 2021-04-01) look like once loaded in R:

spain_data<-read.csv("Countries_data_2021-05-17.csv"); head(spain_data, 5)
  X location       date population doses percentage  People
1 1    Spain 2021-04-01   46754783   All      11.86 5545117
2 2    Spain 2021-04-02   46754783   All      11.86 5545117
3 3    Spain 2021-04-03   46754783   All      12.21 5708759
4 4    Spain 2021-04-04   46754783   All      12.21 5708759
5 5    Spain 2021-04-05   46754783   All      12.60 5891103