read_highland_tribes: Read Highland Tribes

Description Usage Format Source References Examples

Description

Hage & Harary (1983) use the Gahuku-Gama system of the Eastern Central Highlands of New Guinea, described by Read (1954), to illustrate a clusterable signed graph. Read's ethnography portrayed an alliance structure among three tribal groups containing balance as a special case; among Gahuku-Gama the enemy of an enemy can be either a friend or an enemy.

Usage

1

Format

Igraph object with undirected network with 16 vertices. Vertices have original names of the tribes (vertex attribute name). Edge attributes

positive

logical, whether a tie is positive or negative

Source

UCINET IV datasets retrieved from Pajek data collection http://vlado.fmf.uni-lj.si/pub/networks/data/ucinet/ucidata.htm#gama

References

Hage P. and Harary F. (1983). Structural models in anthropology. Cambridge: Cambridge University Press. (See p 56-60).

Read K. (1954). Cultures of the central highlands, New Guinea. Southwestern Journal of Anthropology, 10, 1-43.

Examples

1
2
3
4
5
6
7
if( require(igraph, quietly=TRUE) ) {
plot(read_highland_tribes, 
 vertex.color=ifelse(E(read_highland_tribes)$positive, "black", "red"),
 layout=layout.fruchterman.reingold(delete.edges(read_highland_tribes, 
   E(read_highland_tribes)[!positive])),
 edge.curved=0.1)
}

mbojan/isnar documentation built on Feb. 18, 2021, 4:38 a.m.