war {missSBM} | R Documentation |
This dataset contains two networks where the nodes are countries and an edge in network "beligerent" means that the two countries have been at least once at war between years 1816 to 2007 while an edge in network "alliance" means that the two countries have had a formal alliance between years 1816 to 2012. The network 'beligerent' have less nodes since countries which have not been at war are not considered.
war
A list with 2 two igraph objects, alliance
and beligerent
.
Each graph have three attributes: 'name' (the country name), 'power' (a score related to military power: the higher, the better) and
'trade' (a score related to the trade effort between pairs of countries).
networks were extracted from <http://www.correlatesofwar.org/>
Sarkees, Meredith Reid and Frank Wayman (2010). Resort to War: 1816 - 2007. Washington DC: CQ Press.
Gibler, Douglas M. 2009. International military alliances, 1648-2008. CQ Press
data(war) class(war$beligerent) igraph::gorder(war$alliance) igraph::gorder(war$beligerent) igraph::edges(war$alliance) igraph::get.graph.attribute(war$alliance)