getCommunityMatrix function

Construct a Community Membership Matrix

Construct a Community Membership Matrix

This function returns a binary matrix with nodes as rows, communities as columns, and unit entries indicating membership in a community.

getCommunityMatrix(x, nodes = head(names(x$numclusters), 20))

Arguments

  • x: An object of class linkcomm.
  • nodes: A character vector containing the nodes for the community membership matrix. Defaults to the 20 (or less) nodes that belong to the most communities.

Returns

A binary matrix with nodes as rows and communities as columns.

References

Kalinka, A.T. and Tomancak, P. (2011). linkcomm: an R package for the generation, visualization, and analysis of link communities in networks of arbitrary size and type. Bioinformatics 27 , 2011-2012.

Author(s)

Alex T. Kalinka alex.t.kalinka@gmail.com

See Also

plot.linkcomm

Examples

## Generate graph and extract link communities. g <- swiss[,3:4] lc <- getLinkCommunities(g) ## Get community membership matrix. getCommunityMatrix(lc)
  • Maintainer: Alex T. Kalinka
  • License: GPL (>= 2)
  • Last published: 2021-02-04