I constructed a network using the python package - networkx, each edge has a weight which indicates how close the two nodes are, in terms of correlation.
It would be ideal if there is a built in algorithm that would return a clustered graph, assigning each node to it's cluster ID (1 to k).
It would be even better if it could cluster based on the weight of the edges, but not critical...
Any idea how this could be done?
You might want to look into the package python-louvain. With it, you can detect communities in a graph using the function
best_partition
. From the function description:In my example I compute the communities for the
karate_club_graph
. (Note that I usebest_partition
with theweight
keyword even though my graph doesn't have weighted edges -- I'm just showing how would you use the function in your case.)Output:
The output is a dictionary (key = node, value = partition). The partitions go from 0 to k-1. If you need them to go from 1 to k, you can just bump the dictionary values to +1.