Can k-means clustering do classification?

前端 未结 7 1129
醉话见心
醉话见心 2020-12-31 04:21

I want to know whether the k-means clustering algorithm can do classification?

If I have done a simple k-means clustering .

Assume I have many data , I use k

7条回答
  •  借酒劲吻你
    2020-12-31 04:58

    If you've already done k-means clustering on your data to get two clusters, then you could use k Nearest Neighbors on the new data point to find out which class it belongs to.

提交回复
热议问题