Added clues when to use k-means to README

This commit is contained in:
Christian Muehlhaeuser
2018-05-28 03:11:35 +02:00
parent a41f2c18df
commit f93f9c935e

View File

@@ -10,6 +10,12 @@ to the cluster with the nearest mean, serving as a prototype of the cluster.
![kmeans animation](https://github.com/muesli/kmeans/blob/master/kmeans.gif)
## When Should I Use It?
- When you have numeric, multi-dimensional data sets
- You don't have labels for your data
- You know exactly how many clusters you want to partition your data into
## Example
```go