tribes {latentnet} | R Documentation |
A network of political alliances (``gama'') and enmities (``rova'') among the 16 tribes of Eastern Central Highlands of New Guinea, documented by Read (1954).
data(tribes)
An undirected network
object with no loops, having the following attributes:
%v% "vertex.names"
%e% "gama"
%e% "rova"
%e% "sign"
%e% "sign.012"
Because of limitations of network
objects, the object
itself is a complete graph, and is thus meaningless if used directly
or plotted.
This network shows 3 clusters.
http://vlado.fmf.uni-lj.si/pub/networks/data/UciNet/UciData.htm#gama
Taken from UCINET IV, which cites the following: 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.
data(tribes) tribes.fit<-ergmm(tribes~latent(d=2,G=3),response="sign.012",family="binomial.logit",fam.par=list(trials=2)) # Edge color must be set manually, for green ties to represent alliance # and for ed ties to represent enmity. plot(tribes.fit,edge.col=as.matrix(tribes,"gama",m="a")*3+as.matrix(tribes,"rova",m="a")*2,pie=TRUE)