You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
629 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

## Homework 03 - kMeans
自己编写kMeans方法并使用下面的数据来做聚类
![data](images/data.png)
数据文件是:`dataset_circles.csv`,其中数据的第一列是`x`坐标,第二列是`y`坐标,第三列是样本点的类别。
要求:
1. 使用**自己编写的聚类方法**对数据进行聚类
2. 将数据可视化出来自己分析数据的特点找到一种方法将数据进行某种变换在变换后的空间上使用自己编写的kMeans方法对数据进行聚类处理
3. 自己查找其他的聚类方法,尝试使用一下,看看效果如何。(最好能自己编写)