Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a large set of vectors in 3 dimensions. I need to cluster these based on Euclidean distance such that all the vectors in any particular cluster have a Euclidean distance between each other less than a threshold "T".

I do not know how many clusters exist. At the end, there may be individual vectors existing that are not part of any cluster because its euclidean distance is not less than "T" with any of the vectors in the space.

What existing algorithms / approach should be used here?

Thanks Abhishek S

share|improve this question
1  
Definitely have a look at DBSCAN on Wikipedia. – Anony-Mousse Apr 14 '12 at 5:55

3 Answers

up vote 9 down vote accepted

Use hierarchical clustering, e.g. as provided by Pythons scipy:

import scipy.cluster.hierarchy as hcluster
import numpy.random as random
import numpy

import matplotlib.pyplot as plt

# generate 3 clusters of each around 100 points and an orphan vector
N=100
data = random.randn(2,3*N)
numpy.transpose(data)[:N] += 5
numpy.transpose(data)[-N:] += 10
numpy.transpose(data)[-1:] -= 20

# clustering
thresh = 1.5
clusters = hcluster.fclusterdata(numpy.transpose(data), thresh, criterion="distance")

# plotting
plt.scatter(*data, c=clusters)
plt.axis("equal")
title = "threshold: %f, number of clusters: %d" % (thresh, len(set(clusters)))
plt.title(title)
plt.show()

Which yields a result similar to the following image. Note that the threshold is a distance measure on which basis the decision is made whether or not the Point belongs to a cluster. Also note that there are various methods for how the intra/inter class similarity may be computed, e.g. distance between the closest points, distance between the furthest points, distance to the cluster center and so on. Some of which are supported by scipys hierarchical clustering module (single/complete/average... linkage). According to your post I think you would want to use complete linkage. Note that this approach also allows small (single point) clusters if they don't meet the similarity criterion, i.e. the distance threshold. enter image description here

share|improve this answer
But this way of clustering doesn't allow for orphan vectors to exist, right? According to the conditions that I wrote here, if there is a vector that doesn't have euclidean distance less than "T" with any of the other vectors in the space, then it should be left alone. I hope this is clear - sorry if it was not expressed before. – Abhishek Shivkumar Apr 13 '12 at 9:10
1  
@AbhishekShivkumar - see my edit. Of course there may be single point clusters. – moooeeeep Apr 13 '12 at 9:17
Thnks, analyzing your answer :) – Abhishek Shivkumar Apr 13 '12 at 10:17

Check out the DBSCAN algorithm. It clusters based on local density of vectors, i.e. they must not be more than some ε distance apart, and can determine the number of clusters automatically. It also considers outliers, i.e. points with an unsufficient number of ε-neighbors, to not be part of a cluster. The Wikipedia page links to a few implementations.

share|improve this answer

The answer by moooeeeep recommended using hierarchical clustering. I wanted to elaborate on how to choose the treshold of the clustering.

One way is to compute clusterings based on different thresholds t1, t2, t3,... and then compute a metric for the "quality" of the clustering. The premise is that the quality of a clustering with the optimal number of clusters will have the maximum value of the quality metric.

An example of a good quality metric I've used in the past is Calinski-Harabasz. Briefly: you compute the average inter-cluster distances and divide them by the within-cluster distances. The optimal clustering assignment will have clusters that are separated from each other the most, and clusters that are "tightest".

By the way, you don't have to use hierarchical clustering. You can also use something like k-means, precompute it for each k, and then pick the k that has the highest Calinski-Harabasz score.

Let me know if you need more references, and I'll scour my hard disk for some papers.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.