Additional Datasets For Explaining COVID-19
Oxford COVID-19 Government Response Tracker
@kaggle.chrischow_demographic_factors_for_explaining_covid19
Oxford COVID-19 Government Response Tracker
@kaggle.chrischow_demographic_factors_for_explaining_covid19
This page comprises the additional datasets used for the COVID-19 Global Forecasting Challenge (currently in week 3). Only datasets that have not been hosted on Kaggle will be uploaded here:
UPDATE: Please see my notebook on the COVID-19 Global Forecasting Challenge (Week 3) competition here for merging the data.
The Oxford COVID-19 Government Response Tracker (OxCGRT) provides a systematic cross-national, cross-temporal measure to understand how government responses have evolved over the full period of the disease’s spread. The project tracks governments’ policies and interventions across a standardized series of indicators and creates a composite index to measure the stringency of these responses. Data is collected and updated in real time by a team of dozens of students and staff at Oxford University. Read the white paper here. Access the OxCGRT website here.
The OxCGRT tracks 11 indicators of government response:
Indicators with geographic scope are coded in the following way:
This dataset comprises government measures and descriptions of these measures by country and date. The measures include:
Descriptors of these measures include:
CREATE TABLE oxford_cgrt (
"countryname" VARCHAR,
"countrycode" VARCHAR,
"date" BIGINT,
"s1_school_closing" DOUBLE,
"s1_isgeneral" DOUBLE,
"s1_notes" VARCHAR,
"s2_workplace_closing" DOUBLE,
"s2_isgeneral" DOUBLE,
"s2_notes" VARCHAR,
"s3_cancel_public_events" DOUBLE,
"s3_isgeneral" DOUBLE,
"s3_notes" VARCHAR,
"s4_close_public_transport" DOUBLE,
"s4_isgeneral" DOUBLE,
"s4_notes" VARCHAR,
"s5_public_information_campaigns" DOUBLE,
"s5_isgeneral" DOUBLE,
"s5_notes" VARCHAR,
"s6_restrictions_on_internal_movement" DOUBLE,
"s6_isgeneral" DOUBLE,
"s6_notes" VARCHAR,
"s7_international_travel_controls" DOUBLE,
"s7_notes" VARCHAR,
"s8_fiscal_measures" DOUBLE,
"s8_notes" VARCHAR,
"s9_monetary_measures" DOUBLE,
"s9_notes" VARCHAR,
"s10_emergency_investment_in_health_care" DOUBLE,
"s10_notes" VARCHAR,
"s11_investment_in_vaccines" DOUBLE,
"s11_notes" VARCHAR,
"confirmedcases" DOUBLE,
"confirmeddeaths" DOUBLE,
"stringencyindex" DOUBLE,
"unnamed_34" VARCHAR -- Unnamed: 34
);Anyone who has the link will be able to view this.