K-Medoids / K-Means Algorithm. Data point with the

2019-03-06 04:02发布

I have been researching and studying about partition-based clustering algorithms like K-means and K-Medoids. I have learned that K-medoids is more robust to outliers compared to K-means. However I am curious on what will happen if during the assigning of data points, two or more cluster representatives have the same distance on a data point. Which cluster will you assign the data point? Will the assignment of the data point to a cluster greatly affect the clustering results?

1条回答
何必那么认真
2楼-- · 2019-03-06 04:44

To prevent bad things from happening (infinite loops etc.) always prefer the cluster the point already is assigned to when tied.

查看更多
登录 后发表回答