powered by
Information-theoretic community detection based on random walk dynamics. Minimizes the map equation (description length of random walks).
community_infomap( x, weights = NULL, v.weights = NULL, nb.trials = 10, modularity = TRUE, seed = NULL, ... )com_im( x, weights = NULL, v.weights = NULL, nb.trials = 10, modularity = TRUE, seed = NULL, ... )
com_im( x, weights = NULL, v.weights = NULL, nb.trials = 10, modularity = TRUE, seed = NULL, ... )
A cograph_communities object
cograph_communities
A cograph_communities object. See detect_communities.
detect_communities
Network input
Edge weights for transitions. NULL uses network weights.
Vertex weights (teleportation weights).
Number of optimization trials. Default 10.
Logical; calculate modularity? Default TRUE.
Random seed for reproducibility. Default NULL.
Additional arguments passed to to_igraph
to_igraph
Rosvall, M., & Bergstrom, C.T. (2008). Maps of random walks on complex networks reveal community structure. PNAS, 105(4), 1118-1123.
if (requireNamespace("igraph", quietly = TRUE)) { g <- igraph::make_graph("Zachary") comm <- community_infomap(g, nb.trials = 20) }
Run the code above in your browser using DataLab