contract
is a fundmental tool for analyzing the group-level centrality.
It contracts the chosen nodes into one following a specified rule, and thus
the node-level method can be applied. There are four grouping criteria
in the contract
function: minimum
, maximum
, union
,
and addition
,
each of them responses to a specific interpretation of the edge values
of the adjacency matrix. See details.contract(adj.matrix, nodes, method = c("min", "max", "union", "add"))
c(index1,index2,...)
for multiple playersmethod="min"
indicates the "minimum" criterion (edge values as distances).
method="max"
indicates the "maximum" criterion (edge values as non-cummulative strengths).
set
).