From f93f9c935ec476552da0953f1dbef052f3b15df3 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Mon, 28 May 2018 03:11:35 +0200 Subject: [PATCH] Added clues when to use k-means to README --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 62a35d7..f8848fa 100644 --- a/README.md +++ b/README.md @@ -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