View source: R/find_all_cpm_com.R
find_all_cpm_com | R Documentation |
Function to determine all CPM-communities in a network (or graph)
find_all_cpm_com(graph_input, n_core = 0)
graph_input |
the graph for find all CPM communities in |
n_core |
this defaults to 0, if a number larger than 1 is given the community detection is performed using parallel computing |
data frame with at least two columns. The first column are the node names and the further columns represent the CPM-communities, with 1 denoting the membership in a community.
data(hol_rom)
sim_table_hol <- sim_table(hol_rom)
g_hol <- dendro_network(sim_table_hol)
hol_com_cpm_all <- find_all_cpm_com(g_hol)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.