Single-linkage clustering


In statistics, single-linkage clustering is one of several methods of hierarchical clustering. It is based on grouping clusters in bottom-up fashion, at each step combining two clusters that contain the closest pair of elements not yet belonging to the same cluster as each other.
A drawback of this method is that it tends to produce long thin clusters in which nearby elements of the same cluster have small distances, but elements at opposite ends of a cluster may be much farther from each other than two elements of other clusters. This may lead to difficulties in defining classes that could usefully subdivide the data.

Overview of agglomerative clustering methods

In the beginning of the agglomerative clustering process, each element is in a cluster of its own. The clusters are then sequentially combined into larger clusters, until all elements end up being in the same cluster. At each step, the two clusters separated by the shortest distance are combined. The definition of 'shortest distance' is what differentiates between the different agglomerative clustering methods.
In single-linkage clustering, the distance between two clusters is determined by a single element pair, namely those two elements that are closest to each other. The shortest of these links that remains at any step causes the fusion of the two clusters whose elements are involved. The method is also known as nearest neighbour clustering. The result of the clustering can be visualized as a dendrogram, which shows the sequence of cluster fusion and the distance at which each fusion took place.
Mathematically, the linkage function – the distance D between clusters X and Y – is described by the expression
where X and Y are any two sets of elements considered as clusters, and d denotes the distance between the two elements x and y.

Naive algorithm

The following algorithm is an agglomerative scheme that erases rows and columns in a proximity matrix as old clusters are merged into new ones. The proximity matrix contains all distances. The clusterings are assigned sequence numbers and is the level of the -th clustering. A cluster with sequence number m is denoted and the proximity between clusters and is denoted.
The single linkage algorithm is composed of the following steps:
  1. Begin with the disjoint clustering having level and sequence number.
  2. Find the most similar pair of clusters in the current clustering, say pair, according to where the minimum is over all pairs of clusters in the current clustering.
  3. Increment the sequence number:. Merge clusters and into a single cluster to form the next clustering. Set the level of this clustering to
  4. Update the proximity matrix,, by deleting the rows and columns corresponding to clusters and and adding a row and column corresponding to the newly formed cluster. The proximity between the new cluster, denoted and old cluster is defined as.
  5. If all objects are in one cluster, stop. Else, go to step 2.

    Working example

This working example is based on a JC69 genetic distance matrix computed from the 5S ribosomal RNA sequence alignment of five bacteria: Bacillus subtilis, Bacillus stearothermophilus, Lactobacillus viridescens, Acholeplasma modicum, and Micrococcus luteus.

First step

Let us assume that we have five elements and the following matrix of pairwise distances between them:
abcde
a017213123
b170303421
c213002839
d313428043
e232139430

In this example, is the lowest value of, so we cluster elements and.
Let denote the node to which and are now connected. Setting ensures that elements and are equidistant from. This corresponds to the expectation of the ultrametricity hypothesis.
The branches joining and to then have lengths
We then proceed to update the initial proximity matrix into a new proximity matrix , reduced in size by one row and one column because of the clustering of with.
Bold values in correspond to the new distances, calculated by retaining the minimum distance between each element of the first cluster and each of the remaining elements:
Italicized values in are not affected by the matrix update as they correspond to distances between elements not involved in the first cluster.

Second step

We now reiterate the three previous actions, starting from the new distance matrix :
cde
0213121
c2102839
d3128043
e2139430

Here, and are the lowest values of, so we join cluster with element and with element.
Let denote the node to which, and are now connected. Because of the ultrametricity constraint, the branches joining or to, and to, and also to are equal and have the following total length:
We deduce the missing branch length:

We then proceed to update the matrix into a new distance matrix , reduced in size by two rows and two columns because of the clustering of with and with :

Final step

The final matrix is:
d
028
d280

So we join clusters and.
Let denote the node to which and are now connected.
The branches joining and to then have lengths:
We deduce the remaining branch length:

The single-linkage dendrogram

The dendrogram is now complete. It is ultrametric because all tips are equidistant from :
The dendrogram is therefore rooted by, its deepest node.

Other linkages

The naive algorithm for single linkage clustering is essentially the same as Kruskal's algorithm for minimum spanning trees. However, in single linkage clustering, the order in which clusters are formed is important, while for minimum spanning trees what matters is the set of pairs of points that form distances chosen by the algorithm.
Alternative linkage schemes include complete linkage clustering, average linkage clustering, and Ward's method. In the naive algorithm for agglomerative clustering, implementing a different linkage scheme may be accomplished simply by using a different formula to calculate inter-cluster distances in the algorithm. The formula that should be adjusted has been highlighted using bold text in the above algorithm description. However, more efficient algorithms such as the one described below do not generalize to all linkage schemes in the same way.

Faster algorithms

The naive algorithm for single-linkage clustering is easy to understand but slow, with time complexity. In 1973, R. Sibson proposed an algorithm with time complexity and space complexity known as SLINK. The slink algorithm represents a clustering on a set of numbered items by two functions. These functions are both determined by finding the smallest cluster that contains both item and at least one larger-numbered item.
The first function,, maps item to the largest-numbered item in cluster.
The second function,, maps item to the distance associated with the creation of cluster.
Storing these functions in two arrays that map each item number to its function value takes space, and this information is sufficient to determine the clustering itself. As Sibson shows, when a new item is added to the set of items, the updated functions representing the new single-linkage clustering for the augmented set, represented in the same way, can be constructed from the old clustering in time. The SLINK algorithm then loops over the items, one by one, adding them to the representation of the clustering.
An alternative algorithm, running in the same optimal time and space bounds, is based on the equivalence between the naive algorithm and Kruskal's algorithm for minimum spanning trees. Instead of using Kruskal's algorithm, one can use Prim's algorithm, in a variation without binary heaps that takes time and space to construct the minimum spanning tree of the given items and distances. Then, applying Kruskal's algorithm to the sparse graph formed by the edges of the minimum spanning tree produces the clustering itself in an additional time and space.