R igraph:如何找到最大的社区?

时间:2013-02-27 03:38:49

标签: r igraph

我使用fastgreedy.community生成一个社区对象,其中包含15个社区。但是,如何从这15个社区中提取最大的社区呢?

Community sizes
1    2    3    4    5    6    7    8    9   10   11   12   13   14 
1862 1708  763  974 2321 1164  649 1046    2    2    2    2    2    2 
15 
2 

在此示例中,我想提取社区5以供进一步使用。 谢谢!

1 个答案:

答案 0 :(得分:6)

假设您的社区对象名为community.objectwhich(membership(community.object) == x)会提取社区x中顶点的索引。如果您想要最大的社区,可以将x设置为which.max(sizes(community.object))。最后,您可以使用induced.subgraph将特定社区提取到单独的图表中:

> x <- which.max(sizes(community.object))
> subg <- induced.subgraph(graph, which(membership(community.object) == x))