A character vector containing the nodes for the community membership matrix. Defaults to the 20 (or less) nodes that belong to the most communities.
Value
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. Bioinformatics27, 2011-2012.
# NOT RUN {## Generate graph and extract link communities.g <- swiss[,3:4]
lc <- getLinkCommunities(g)
## Get community membership matrix.getCommunityMatrix(lc)
# }