Description Usage Arguments Value
Pure R implementation of SLPAw (Xie et. al 2011)
1 2 3 4 5 6 | DetectOverlappingCommunitiesSLPAw(
W,
num.iters = 20,
rand.seed = 42,
community.threshold = 0.25
)
|
W |
a weighted walk matrix |
num.iters |
a predefined number of iterations after which to terminate the SLPA algorithm. Default 20, reported as empirically observed general stability threshold in the original paper. |
rand.seed |
an integer seed for the RNG, default=42 |
community.threshold |
a number in [0,1] to determine the thresholding value for communities to report. The function will report all communities with a total number of labels >= floor(community.threshold * num.iters) in memory for each node. |
a list of lists of node IDs containing communities identified
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.