Clustering with a distance matrix

后端 未结 3 1148
醉梦人生
醉梦人生 2020-12-16 17:17

I have a (symmetric) matrix M that represents the distance between each pair of nodes. For example,

    A   B   C   D   E   F   G   H   I   J   K   L         


        
3条回答
  •  执笔经年
    2020-12-16 18:02

    Hierarchical clustering works directly with the distance matrix instead of the actual observations. If you know the number of clusters, you will already know your stopping criterion (stop when there are k clusters). The main trick here will be to choose an appropriate linkage method. Also, this paper(pdf) gives an excellent overview of all kinds of clustering methods.

提交回复
热议问题