EIU Democratic Index (2006-2023)
@owid.eiu
@owid.eiu
The Economist Intelligence Unit's (EIU) Democracy Index provides a snapshot of the state of democracy in 165 independent states and two territories. This covers almost the entire population of the world and the vast majority of the world's states (microstates are excluded). Scored on a 0-10 scale, the Democracy Index is based on five categories: electoral process and pluralism, functioning of government, political participation, political culture, and civil liberties. Based on its scores on a range of indicators within these categories, each country is classified as one of four types of regime: "full democracy", "flawed democracy", "hybrid regime" or "authoritarian regime".
This dataset was constructed using data collected from various EIU yearly reports and a multi-year compilation by Gapminder.
CREATE TABLE owid_avg_pop (
"country" VARCHAR,
"year" INTEGER,
"democracy_eiu_weighted" FLOAT
);CREATE TABLE owid_eiu_1 (
"country" VARCHAR,
"year" INTEGER,
"democracy_eiu" FLOAT,
"elect_freefair_eiu" FLOAT,
"funct_gov_eiu" FLOAT,
"pol_part_eiu" FLOAT,
"dem_culture_eiu" FLOAT,
"civlib_eiu" FLOAT,
"regime_eiu" VARCHAR
);CREATE TABLE owid_eiu_2 (
"country" VARCHAR,
"year" INTEGER,
"democracy_eiu" FLOAT,
"elect_freefair_eiu" FLOAT,
"funct_gov_eiu" FLOAT,
"pol_part_eiu" FLOAT,
"dem_culture_eiu" FLOAT,
"civlib_eiu" FLOAT,
"regime_eiu" VARCHAR
);CREATE TABLE owid_num_countries_1 (
"country" VARCHAR,
"year" INTEGER,
"category" VARCHAR,
"num_regime_eiu" INTEGER
);CREATE TABLE owid_num_countries_2 (
"country" VARCHAR,
"year" INTEGER,
"category" VARCHAR,
"num_regime_eiu" INTEGER
);CREATE TABLE owid_num_people_1 (
"country" VARCHAR,
"year" INTEGER,
"category" VARCHAR,
"pop_regime_eiu" UINTEGER
);CREATE TABLE owid_num_people_2 (
"country" VARCHAR,
"year" INTEGER,
"category" VARCHAR,
"pop_regime_eiu" UINTEGER
);Anyone who has the link will be able to view this.