Description Usage Arguments Value Author(s) Examples
This method applies the binary layer aggregation approaches. Then a classical community detection algorithm (one of igraph provided algorithms) can be applied to the resulting monoplex network.
1 | community.layer_aggregation(multiplex, flatten_method, community_algorithm)
|
multiplex |
: The multiplex object. |
flatten_method |
: flaten a multiplex network into a simple monoplex network method |
community_algorithm |
: String, the name of classical community detection algorithm. As Licod, Louvain, Infomap, Walktrap,... |
returns an igraph communities object, please see igraph manual page for details.
Issam Falih <issam.falih@lipn.univ-paris13.fr> Rushed Kanawati <rushed.kanawati@lipn.univ-paris13.fr>
1 2 3 4 5 6 7 8 | M <- Multiplex_Lazega
community.layer_aggregation (M, flatten_binary, cluster_louvain)
community.layer_aggregation (M, flatten_redundancy,cluster_louvain)
community.layer_aggregation(M, flatten_binary, cluster_infomap)
community.layer_aggregation(M, flatten_binary, cluster_louvain)
community.layer_aggregation(M, flatten_binary, cluster_walktrap)
community.layer_aggregation(M, flatten_binary, cluster_edge_betweenness)
community.layer_aggregation(M, flatten_binary, cluster_label_prop)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.