An integer vector of community IDs. Defaults to all communities.
verbose
Logical, whether to print progress of the calculation to the screen. Defaults to TRUE.
Value
A list with the following components:
ordered
A list of integer vectors. These are the ordered communities of links.
clusids
An integer vector of community IDs in their new order.
Details
Ordering link communities according to the dendrogram can aid in visualization when plotting them as a Spencer circle because it minimses crossing over between links.
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)
## Order communities according to the dendrogram.orderCommunities(lc)
# }