Clustering analysis of a weighted graph

121 Views Asked by At

My data consists of a large weighted undirected graph of $n$ nodes. I need to group the nodes into $m$ clusters ($m < n$), such that nodes in a cluster are connected with heavy weights. What algorithms are available for this problem?

2

There are 2 best solutions below

0
On

Some keywords and starting references:

0
On

Walktrap and the Louvain algorithms work very well with weighted undirected graphs.

You may find them in most modern graph libraries.