Coronavirus (COVID-19) In-depth Dataset
An Indepth dataset for your Covid Analysis
@kaggle.pranjalverma08_coronavirus_covid19_indepth_dataset
An Indepth dataset for your Covid Analysis
@kaggle.pranjalverma08_coronavirus_covid19_indepth_dataset
Covid-19 Data collected from various sources on the internet. This dataset has daily level information on the number of affected cases, deaths, and recovery from the 2019 novel coronavirus. Please note that this is time-series data and so the number of cases on any given day is the cumulative number.
The dataset includes 28 files scrapped from various data sources mainly the John Hopkins GitHub repository, the ministry of health affairs India, worldometer, and Our World in Data website. The details of the files are as follows
countries-aggregated.csv
covid-19-daily-tests-vs-daily-new-confirmed-cases-per-million.csv
covid-contact-tracing.csv
covid-stringency-index.csv
covid-vaccination-doses-per-capita.csv
covid-vaccine-willingness-and-people-vaccinated-by-country.csv
covid_india.csv
cumulative-deaths-and-cases-covid-19.csv
current-covid-patients-hospital.csv
daily-tests-per-thousand-people-smoothed-7-day.csv
face-covering-policies-covid.csv
full-list-cumulative-total-tests-per-thousand-map.csv
income-support-covid.csv
internal-movement-covid.csv
international-travel-covid.csv
people-fully-vaccinated-covid.csv
people-vaccinated-covid.csv
positive-rate-daily-smoothed.csv
public-gathering-rules-covid.csv
school-closures-covid.csv
share-people-fully-vaccinated-covid.csv
stay-at-home-covid.csv
workplace-closures-covid.csv
-Thomas Hale , Noam Angrist , Rafael Goldszmidt , Beatriz Kira , Anna Petherick , Toby Phillips, Samuel Webster, Emily Cameron-Blake , Laura Hallas, Saptarshi Majumdar, and Helen Tatlow. (2021). “A global panel database of pandemic policies (Oxford COVID-19 Government Response Tracker).” Nature Human Behaviour. https://doi.org/10.1038/s41562-021-01079-8
-Johns Hopkins University for making the data available for educational and academic research purposes
-World Health Organization (WHO): https://www.who.int/
-Ministry of Health and Family welfare: https://www.mohfw.gov.in/
The trend of daily new cases.
Geospatial analysis of country-specific hotspots.
Comparison of top countries in vaccination race.
Share of people fully vaccinated.
Government policies during Covid.
Any many more..
CREATE TABLE countries_aggregated (
"date" TIMESTAMP,
"country" VARCHAR,
"confirmed" BIGINT,
"recovered" BIGINT,
"deaths" BIGINT
);
CREATE TABLE covid_19_daily_tests_vs_daily_new_confirmed_cases_per_million (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"new_tests_per_thousand_7day_smoothed" DOUBLE,
"n_142753_annotations" VARCHAR -- 142753-annotations,
"daily_new_confirmed_cases_of_covid_19_per_million_peop_ac407e03" DOUBLE -- Daily New Confirmed Cases Of COVID-19 Per Million People (rolling 7-day Average, Right-aligned),
"year" DOUBLE,
"continent" VARCHAR
);
CREATE TABLE covid_contact_tracing (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"contact_tracing" BIGINT
);
CREATE TABLE covid_india (
"s_no" BIGINT -- S. No.,
"name_of_state_ut" VARCHAR -- Name Of State / UT,
"active_cases" BIGINT,
"cured_discharged_migrated" BIGINT,
"deaths" BIGINT,
"total_confirmed_cases" BIGINT
);
CREATE TABLE covid_stringency_index (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"stringency_index" DOUBLE
);
CREATE TABLE covid_vaccination_doses_per_capita (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"total_vaccinations_per_hundred" DOUBLE
);
CREATE TABLE covid_vaccine_willingness_and_people_vaccinated_by_country (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"people_vaccinated_per_hundred" DOUBLE,
"willingness_covid_vaccinate_this_week_pct_pop" DOUBLE,
"uncertain_covid_vaccinate_this_week_pct_pop" DOUBLE,
"unwillingness_covid_vaccinate_this_week_pct_pop" DOUBLE
);
CREATE TABLE cumulative_deaths_and_cases_covid_19 (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"total_confirmed_deaths_due_to_covid_19" DOUBLE,
"total_confirmed_cases_of_covid_19" DOUBLE
);
CREATE TABLE current_covid_patients_hospital (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"daily_hospital_occupancy" BIGINT
);
CREATE TABLE daily_covid_vaccination_doses_per_capita (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"new_vaccinations_smoothed_per_million" DOUBLE
);
CREATE TABLE daily_tests_per_thousand_people_smoothed_7_day (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"new_tests_per_thousand_7day_smoothed" DOUBLE,
"n_142753_annotations" VARCHAR -- 142753-annotations
);
CREATE TABLE face_covering_policies_covid (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"facial_coverings" BIGINT
);
CREATE TABLE full_list_cumulative_total_tests_per_thousand_map (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"total_tests_per_thousand" DOUBLE,
"n_142605_annotations" VARCHAR -- 142605-annotations
);
CREATE TABLE income_support_covid (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"income_support" BIGINT
);
CREATE TABLE internal_movement_covid (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"restrictions_internal_movements" BIGINT
);
CREATE TABLE international_travel_covid (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"international_travel_controls" BIGINT
);
CREATE TABLE owid_covid_data_1 (
"iso_code" VARCHAR,
"continent" VARCHAR,
"location" VARCHAR,
"date" TIMESTAMP,
"total_cases" DOUBLE,
"new_cases" DOUBLE,
"new_cases_smoothed" DOUBLE,
"total_deaths" DOUBLE,
"new_deaths" DOUBLE,
"new_deaths_smoothed" DOUBLE,
"total_cases_per_million" DOUBLE,
"new_cases_per_million" DOUBLE,
"new_cases_smoothed_per_million" DOUBLE,
"total_deaths_per_million" DOUBLE,
"new_deaths_per_million" DOUBLE,
"new_deaths_smoothed_per_million" DOUBLE,
"reproduction_rate" DOUBLE,
"icu_patients" DOUBLE,
"icu_patients_per_million" DOUBLE,
"hosp_patients" DOUBLE,
"hosp_patients_per_million" DOUBLE,
"weekly_icu_admissions" DOUBLE,
"weekly_icu_admissions_per_million" DOUBLE,
"weekly_hosp_admissions" DOUBLE,
"weekly_hosp_admissions_per_million" DOUBLE,
"new_tests" DOUBLE,
"total_tests" DOUBLE,
"total_tests_per_thousand" DOUBLE,
"new_tests_per_thousand" DOUBLE,
"new_tests_smoothed" DOUBLE,
"new_tests_smoothed_per_thousand" DOUBLE,
"positive_rate" DOUBLE,
"tests_per_case" DOUBLE,
"tests_units" VARCHAR,
"total_vaccinations" DOUBLE,
"people_vaccinated" DOUBLE,
"people_fully_vaccinated" DOUBLE,
"new_vaccinations" DOUBLE,
"new_vaccinations_smoothed" DOUBLE,
"total_vaccinations_per_hundred" DOUBLE,
"people_vaccinated_per_hundred" DOUBLE,
"people_fully_vaccinated_per_hundred" DOUBLE,
"new_vaccinations_smoothed_per_million" DOUBLE,
"stringency_index" DOUBLE,
"population" DOUBLE,
"population_density" DOUBLE,
"median_age" DOUBLE,
"aged_65_older" DOUBLE,
"aged_70_older" DOUBLE,
"gdp_per_capita" DOUBLE,
"extreme_poverty" DOUBLE,
"cardiovasc_death_rate" DOUBLE,
"diabetes_prevalence" DOUBLE,
"female_smokers" DOUBLE,
"male_smokers" DOUBLE,
"handwashing_facilities" DOUBLE,
"hospital_beds_per_thousand" DOUBLE,
"life_expectancy" DOUBLE,
"human_development_index" DOUBLE
);
CREATE TABLE people_fully_vaccinated_covid (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"people_fully_vaccinated" BIGINT
);
CREATE TABLE people_vaccinated_covid (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"people_vaccinated" BIGINT
);
CREATE TABLE positive_rate_daily_smoothed (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"short_term_positivity_rate" DOUBLE
);
CREATE TABLE public_gathering_rules_covid (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"restriction_gatherings" BIGINT
);
CREATE TABLE school_closures_covid (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"school_closures" BIGINT
);
CREATE TABLE share_people_fully_vaccinated_covid (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"people_fully_vaccinated_per_hundred" DOUBLE
);
CREATE TABLE share_people_fully_vaccinated_covid_1 (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"people_fully_vaccinated_per_hundred" DOUBLE
);
CREATE TABLE share_people_vaccinated_covid (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"people_vaccinated_per_hundred" DOUBLE,
"n_145610_annotations" VARCHAR -- 145610-annotations
);
Anyone who has the link will be able to view this.