History Of War (Gibler And Miller, 2020)
@owid.mie
@owid.mie
This dataset provides information on militarized interstate confrontations, using Douglas Gibler and Steven Miller's Militarized Interstate Events dataset (version 1.0).
The dataset provides information on the number of ongoing and new interstate conflicts and the number of deaths in ongoing interstate conflicts.
Deaths of combatants due to fighting are included.
We use the world regions of the participants to code the conflicts' world region(s). The regions are defined based on Gleditsch and Ward codes. Find the complete mapping at
https://correlatesofwar.org/wp-content/uploads/states2016.csv:
• Americas: 2-165
• Europe: 200-395
• Africa: 402-626
• Middle East: 630-698
• Asia and Oceania: 700-999
You can find more information about the data in our article: [To be published]
CREATE TABLE owid_mie (
"year" INTEGER,
"region" VARCHAR,
"hostility_level" VARCHAR,
"number_ongoing_conflicts" INTEGER,
"number_deaths_ongoing_conflicts_low" UINTEGER,
"number_deaths_ongoing_conflicts_high" UINTEGER,
"number_new_conflicts" INTEGER,
"number_ongoing_conflicts_per_country" FLOAT,
"number_ongoing_conflicts_per_country_pair" FLOAT,
"number_new_conflicts_per_country" FLOAT,
"number_new_conflicts_per_country_pair" FLOAT,
"number_deaths_ongoing_conflicts_low_per_capita" FLOAT,
"number_deaths_ongoing_conflicts_high_per_capita" FLOAT
);CREATE TABLE owid_mie_country (
"year" INTEGER,
"hostlev" VARCHAR,
"country" VARCHAR,
"participated_in_conflict" INTEGER,
"number_participants" INTEGER
);Anyone who has the link will be able to view this.