Monkeypox
@owid.monkeypox
@owid.monkeypox
Data on mpox is collated by the World Health Organization since 2022, and is updated as new information is reported.
We fetch the latest version of the WHO data every hour, keep records up to the previous day, apply some transformations (7-day averages, per-capita adjustments, etc.), and produce a transformed version of the data, available on GitHub. This transformed data powers our Mpox Data Explorer on Our World in Data.
CREATE TABLE owid_monkeypox_1 (
"country" VARCHAR,
"date" VARCHAR,
"iso_code" VARCHAR,
"total_cases" BIGINT,
"total_deaths" INTEGER,
"new_cases" INTEGER,
"new_deaths" INTEGER,
"new_cases_smoothed" FLOAT,
"new_deaths_smoothed" FLOAT,
"new_cases_per_million" FLOAT,
"total_cases_per_million" FLOAT,
"new_cases_smoothed_per_million" FLOAT,
"new_deaths_per_million" FLOAT,
"total_deaths_per_million" FLOAT,
"new_deaths_smoothed_per_million" FLOAT
);CREATE TABLE owid_monkeypox_2 (
"country" VARCHAR,
"date" VARCHAR,
"iso_code" VARCHAR,
"total_cases" BIGINT,
"total_deaths" INTEGER,
"new_cases" INTEGER,
"new_deaths" INTEGER,
"new_cases_smoothed" FLOAT,
"new_deaths_smoothed" FLOAT,
"new_cases_per_million" FLOAT,
"total_cases_per_million" FLOAT,
"new_cases_smoothed_per_million" FLOAT,
"new_deaths_per_million" FLOAT,
"total_deaths_per_million" FLOAT,
"new_deaths_smoothed_per_million" FLOAT,
"suspected_cases_cumulative" INTEGER,
"annotation" VARCHAR
);Anyone who has the link will be able to view this.