user2380782
user2380782

Reputation: 1446

Fast algorithm for detecting community structure in networks in igraph

I would like to know if the algorithm for finding communities based on via modularity-based clustering, published by Newman in 2004: "Fast algorithm for detecting community structure in networks" is available in the igraph-R package, if it is not implemented, is there a easy way to do it?

Thanks

Upvotes: 4

Views: 623

Answers (1)

Ryan Haunfelder
Ryan Haunfelder

Reputation: 786

The modMax package on CRAN has a function called "greedy" that implements an algorithm which will give identical results. The method was presented in a 2004 paper by Clauset, Newman, and Moore ("Finding community structure in very large networks") as a modification to improve the speed of the original algorithm in the paper you have listed.

Upvotes: 3

Related Questions