Clustering with a distance matrix

后端 未结 3 1149
醉梦人生
醉梦人生 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 17:54

    One more possible way is using Partitioning Around Medoids which often called K-Medoids. If you look at R-clustering package you will see pam function which recieves distance matrix as input data.

提交回复
热议问题