COVID-19 Coronavirus Dataset Worldwide
COVID-19 Cases Worldwide, by European Centre for Disease Prevention and Control
@kaggle.hgultekin_covid19_coronavirus_dataset
COVID-19 Cases Worldwide, by European Centre for Disease Prevention and Control
@kaggle.hgultekin_covid19_coronavirus_dataset
The worldwide situation about the COVID-19 (by 2019-03-23), data provided by the European Centre for Disease Prevention and Control and published on the EU Open Data Portal.
The dataset contains the latest available public data on COVID-19 including a daily situation update, the epidemiological curve and the global geographical distribution (EU/EEA and the UK, worldwide). On 12 February 2020, the novel coronavirus was named severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2) while the disease associated with it is now referred to as COVID-19. ECDC is closely monitoring this outbreak and providing risk assessments to guide EU Member States and the EU Commission in their response activities.
Official link: https://data.europa.eu/euodp/en/data/dataset/covid-19-coronavirus-data
What applications can we develop to understand COVID-19 and its prospective behavior better?
CREATE TABLE covid_19_geographic_disbtribution_worldwide_2020_08_02 (
"daterep" TIMESTAMP,
"day" BIGINT,
"month" BIGINT,
"year" BIGINT,
"cases" BIGINT,
"deaths" BIGINT,
"countriesandterritories" VARCHAR,
"geoid" VARCHAR,
"countryterritorycode" VARCHAR,
"popdata2019" DOUBLE,
"continentexp" VARCHAR,
"cumulative_number_for_14_days_of_covid_19_cases_per_100000" DOUBLE
);CREATE TABLE covid_19_geographic_disbtribution_worldwide_2020_08_08 (
"daterep" TIMESTAMP,
"day" BIGINT,
"month" BIGINT,
"year" BIGINT,
"cases" BIGINT,
"deaths" BIGINT,
"countriesandterritories" VARCHAR,
"geoid" VARCHAR,
"countryterritorycode" VARCHAR,
"popdata2019" DOUBLE,
"continentexp" VARCHAR,
"cumulative_number_for_14_days_of_covid_19_cases_per_100000" DOUBLE
);Anyone who has the link will be able to view this.