FindGraphCommunitites has a couple of method options: "Modularity", "Hierarchical", "Spectral", "Centrality", and "CliquePercolation".
I know that some of these methods admit further options. For example, "Modularity" admits "StopTest" and "Weighted", which can be specified as:
FindGraphCommunitites[graph, Method->{"Modularity", "Weighted"->False,
"StopTest"->"StopTest" -> (Length@#2 == 7 &)}
("StopTest" example from https://mathematica.stackexchange.com/a/28449/534).
Where can I find documentation or references as to what options each method admits, and what do they mean?
See also: Citation of the algorithms used in FindGraphCommunities, How to set FindGraphCommunities Modularity's method option.
FindGraphCommunititesmay want to share what they have learned. – a06e Dec 07 '14 at 15:52