COVID-19, Countries Reporting Data
@owid.countries_reporting
@owid.countries_reporting
Country-by-country data on global COVID-19 vaccinations. We only rely on figures that are verifiable based on public official sources.
This dataset includes some subnational locations (England, Northern Ireland, Scotland, Wales, Northern Cyprus…) and international aggregates (World, continents, European Union…).
The data produced by third parties and made available by Our World in Data is subject to the license terms from the original third-party authors. We will always indicate the original source of the data in our database, and you should always check the license of any such third-party data before use.
CREATE TABLE owid_country_counts (
"country" VARCHAR,
"date" TIMESTAMP,
"type" VARCHAR,
"num_countries_reporting_latest" INTEGER,
"share_countries_reporting_latest" FLOAT
);CREATE TABLE owid_country_counts_historical (
"country" VARCHAR,
"date" TIMESTAMP,
"type" VARCHAR,
"num_countries_reporting" INTEGER,
"share_countries_reporting" FLOAT
);CREATE TABLE owid_country_flags (
"country" VARCHAR,
"date" TIMESTAMP,
"type" VARCHAR,
"reporting_latest" INTEGER
);CREATE TABLE owid_country_flags_historical (
"country" VARCHAR,
"date" TIMESTAMP,
"type" VARCHAR,
"reporting" INTEGER
);CREATE TABLE owid_country_reporting_delay (
"country" VARCHAR,
"year" INTEGER,
"num_days_delay_in_reporting" INTEGER
);Anyone who has the link will be able to view this.