r - Retrieve all edges of a community in igraph -


how can edges of community in igraph?

g <- graph.edgelist(edges, directed=false) c <- edge.betweenness.community(g) listofcommunities <- communities(c) 

listofcommunities stores lists of verteces each community. edges each community.


Comments