COVID-19, Deaths By Vaccination Status
@owid.deaths_vax_status
@owid.deaths_vax_status
Incidence of deaths according to vaccination status, age group, and epidemiological week.
Vaccination status is classified as "Fully vaccinated" for those people who have received two doses and more than 14 days have passed since their second dose, or have received a vaccine from a vaccination protocol that includes only a single dose and more than 28 days have elapsed since inoculation. This variable takes the value "Unvaccinated or not fully vaccinated" if people do not have a complete vaccination schedule.
The mortality rate corresponds to the incidence rate of deaths per 100,000 inhabitants for the age group, corresponding vaccination status and corresponding epidemiological week.
The mortality rate for the "All ages" group is age-standardized by Our World in Data, using single-year age estimates from the 2022 revision of the United Nations World Population Prospects for Chile. Rates for specific age groups are calculated as crude incidence rates.
CREATE TABLE owid_chile (
"country" VARCHAR,
"date" VARCHAR,
"chile_0_1_dose" FLOAT,
"chile_2_doses" FLOAT,
"chile_3_doses" FLOAT,
"chile_4_doses" FLOAT
);CREATE TABLE owid_england (
"country" VARCHAR,
"date" VARCHAR,
"england_unvaccinated" FLOAT,
"england_fully_vaccinated" FLOAT
);CREATE TABLE owid_switzerland (
"country" VARCHAR,
"date" VARCHAR,
"swi_unvaccinated" FLOAT,
"swi_vaccinated_no_booster" FLOAT,
"swi_vaccinated_with_booster" FLOAT
);CREATE TABLE owid_us (
"country" VARCHAR,
"date" VARCHAR,
"us_unvaccinated" FLOAT,
"us_vaccinated_no_biv_booster" FLOAT,
"us_vaccinated_with_biv_booster" FLOAT
);Anyone who has the link will be able to view this.