Worldwide Covid Cases & Vaccination Data Combined
It contains cleaned covid and vaccination data worldwide
@kaggle.kunwarakash_covid_cases_and_vaccination_data
It contains cleaned covid and vaccination data worldwide
@kaggle.kunwarakash_covid_cases_and_vaccination_data
This is the data repository for the 2019 Novel Coronavirus cases as well as vaccination of covid 19 worldwide combined. This data includes columns such as:
country - Data representing that country,
date - Data representing that date,
total_cases - Total cases of that country till that date,
total_deaths - Total deaths of that country till that date,
daily_cases - Total cases of that country till that date,
daily_deaths - Total deaths of that country till that date,
fully_vaccinated - Fillu vaccinated people of that country till that date,
total_vaccinations	- Total vaccination of that country till that date,
total_boosters - Total boosters shot of that country till that date,
daily_vaccinations	- Daily vaccinations shots of that country till that date,
daily_people_vaccinated - Daily people vaccinated of that country till that date,
CREATE TABLE world_covid_cases_deaths_vaccination_data (
  "unnamed_0" BIGINT  -- Unnamed: 0,
  "country" VARCHAR,
  "date" TIMESTAMP,
  "total_cases" DOUBLE,
  "total_deaths" DOUBLE,
  "daily_cases" DOUBLE,
  "daily_deaths" DOUBLE,
  "fully_vaccinated" DOUBLE,
  "total_vaccinations" DOUBLE,
  "total_boosters" DOUBLE,
  "daily_vaccinations" DOUBLE,
  "daily_people_vaccinated" DOUBLE
);Anyone who has the link will be able to view this.