Vaccine Confidence Index
@owid.vaccine_confidence
@owid.vaccine_confidence
The Vaccine Confidence Index uses a standardized methodology and questions to examine individuals’ overall perceptions of the importance, safety, effectiveness, and compatibility of vaccines with people’s beliefs.
The data indicates the percentage of respondents who agree with the four statements on vaccine importance, safety, effectiveness, and compatibility with beliefs (encompassing both “tend to agree” and “strongly agree” responses). The data is a combination of multiple sources, the full list of which can be found here: https://www.vaccineconfidence.org/vci/data-and-methodology/
Where VCI performed multiple data collections in a given country in a given year, either one data set is chosen to display, or a simple average is calculated to provide an overall benchmark.
CREATE TABLE owid_vaccine_confidence_1 (
"country" VARCHAR,
"year" INTEGER,
"children" FLOAT,
"safe" FLOAT,
"effective" FLOAT,
"beliefs" FLOAT
);CREATE TABLE owid_vaccine_confidence_2 (
"country" VARCHAR,
"year" INTEGER,
"question" VARCHAR,
"strongly_agree" FLOAT,
"tend_to_agree" FLOAT,
"tend_to_disagree" FLOAT,
"strongly_disagree" FLOAT,
"dont_know_prefer_not_to_say" FLOAT -- Dont Know, Prefer Not To Say,
"agree" FLOAT,
"disagree" FLOAT
);Anyone who has the link will be able to view this.