COVID-19 World Vaccination Progress
Daily and Total Vaccination for COVID-19 in the World from Our World in Data
@kaggle.gpreda_covid_world_vaccination_progress
Daily and Total Vaccination for COVID-19 in the World from Our World in Data
@kaggle.gpreda_covid_world_vaccination_progress
Data is collected daily from Our World in Data GitHub repository for covid-19, merged and uploaded. Country level vaccination data is gathered and assembled in one single file. Then, this data file is merged with locations data file to include vaccination sources information. A second file, with manufacturers information, is included.
The data (country vaccinations) contains the following information:
There is a second file added recently (country vaccinations by manufacturer), with the following columns:
I would like to specify that I am only making available Our World in Data collected data about vaccinations to Kagglers. My contribution is very small, just daily collection, merge and upload of the updated version, as maintained by Our World in Data in their GitHub repository.
Track COVID-19 vaccination in the World, answer instantly to your questions:
Combine this dataset with COVID-19 World Testing Progress and COVID-19 Variants Worldwide Evolution to get more insights on the dynamics of the pandemics, as reflected in the interdependence of amount of testing performed, results of sequencing and vaccination campaigns.
CREATE TABLE country_vaccinations (
  "country" VARCHAR,
  "iso_code" VARCHAR,
  "date" TIMESTAMP,
  "total_vaccinations" DOUBLE,
  "people_vaccinated" DOUBLE,
  "people_fully_vaccinated" DOUBLE,
  "daily_vaccinations_raw" DOUBLE,
  "daily_vaccinations" DOUBLE,
  "total_vaccinations_per_hundred" DOUBLE,
  "people_vaccinated_per_hundred" DOUBLE,
  "people_fully_vaccinated_per_hundred" DOUBLE,
  "daily_vaccinations_per_million" DOUBLE,
  "vaccines" VARCHAR,
  "source_name" VARCHAR,
  "source_website" VARCHAR
);CREATE TABLE country_vaccinations_by_manufacturer (
  "location" VARCHAR,
  "date" TIMESTAMP,
  "vaccine" VARCHAR,
  "total_vaccinations" BIGINT
);Anyone who has the link will be able to view this.