I've been studying about k-means clustering, and one thing that's not clear is how you choose the value of k. Is it just a matter of trial and error, or is there more to it?
|
You can maximize the Bayesian Information Criterion (BIC):
where Another approach is to start with a large value for Finally, you can start with one cluster, then keep splitting clusters until the points assigned to each cluster have a Gaussian distribution. In "Learning the k in k-means" (NIPS 2003), Greg Hamerly and Charles Elkan show some evidence that this works better than BIC, and that BIC does not penalize the model's complexity strongly enough. |
|||||
|
|
Basically, you want to find a balance between two variables: the number of clusters (k) and the average variance of the clusters. You want to minimize the former while also minimizing the latter. Of course, as the number of clusters increases, the average variance decreases (up to the trivial case of k=n and variance=0). As always in data analysis, there is no one true approach that works better than all others in all cases. In the end, you have to use your own best judgement. For that, it helps to plot the number of clusters against the average variance (which assumes that you have already run the algorithm for several values of k). Then you can use the number of clusters at the knee of the curve. |
|||
|
|
|
First build a minimum spanning tree of your data.
Removing the K-1 most expensive edges splits the tree into K clusters, This works only for Single-linkage_clustering,
but for that it's fast and easy. Plus, MSTs make good visuals. |
||||
|
|
|
For k-mean you might want to have a look at gap statistic |
|||
|
|
|
Look at this paper. It uses a Gaussian test to determine the right number of clusters. Also, the authors claim that this method is better than BIC which is mentioned in the accepted answer. |
|||
|
|

R) over here: stackoverflow.com/a/15376462/1036500 – Ben May 13 at 4:52