Covid19 Forecasting Metadata
Metadata for Covid19 forecasting challenges
@kaggle.rohanrao_covid19_forecasting_metadata
Metadata for Covid19 forecasting challenges
@kaggle.rohanrao_covid19_forecasting_metadata
There are plenty of datasets that are being explored for forecasting Covid-19. This is my version compiled from various sources and cleaned for easy use.
The data contains metadata of regions.
Country + State
Country + State + Date
All the data is compiled from Wikipedia and John Hopkins University. They are restructured to be aligned with the Covid-19 Forecasting Competitions.
Wikipedia: https://www.wikipedia.org/
JHU GitHub: https://github.com/CSSEGISandData/COVID-19
CREATE TABLE region_date_metadata (
"province_state" VARCHAR,
"country_region" VARCHAR,
"date" TIMESTAMP,
"recoveries" BIGINT
);CREATE TABLE region_metadata (
"country_region" VARCHAR,
"province_state" VARCHAR,
"lat" DOUBLE,
"lon" DOUBLE,
"continent" VARCHAR,
"population" BIGINT,
"area" BIGINT,
"density" DOUBLE
);Anyone who has the link will be able to view this.