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 share_people_vaccinated_covid_1 (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"people_vaccinated_per_hundred" DOUBLE,
"n_145610_annotations" VARCHAR -- 145610-annotations
);
CREATE TABLE stay_at_home_covid (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"stay_home_requirements" BIGINT
);
CREATE TABLE tests_per_confirmed_case_daily_smoothed (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"short_term_tests_per_case" DOUBLE
);
CREATE TABLE workplace_closures_covid (
"entity" VARCHAR,
"code" VARCHAR,
"day" TIMESTAMP,
"workplace_closures" BIGINT
);
Anyone who has the link will be able to view this.