Complete-linkage clustering

From Wikipedia, the free encyclopedia
(Redirected from Complete linkage clustering)
Jump to navigation Jump to search

Complete-linkage clustering is one of several methods of agglomerative hierarchical clustering. At the beginning of the 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. The method is also known as farthest 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.[1][2][3]

Clustering procedure

[edit | edit source]

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 complete-linkage clustering, the link between two clusters contains all element pairs, and the distance between clusters equals the distance between those two elements (one in each cluster) that are farthest away from each other. The shortest of these links that remains at any step causes the fusion of the two clusters whose elements are involved.

Mathematically, the complete linkage function — the distance D(X,Y) between clusters X and Y — is described by the following expression : D(X,Y)=maxxX,yYd(x,y)

where

  • d(x,y) is the distance between elements xX and yY ;
  • X and Y are two sets of elements (clusters).

Algorithms

[edit | edit source]

Naive scheme

[edit | edit source]

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 N×N proximity matrix D contains all distances d(i,j). The clusterings are assigned sequence numbers 0,1,......, (n − 1) and L(k) is the level of the kth clustering. A cluster with sequence number m is denoted (m) and the proximity between clusters (r) and (s) is denoted d[(r),(s)].

The complete linkage clustering algorithm consists of the following steps:

  1. Begin with the disjoint clustering having level L(0)=0 and sequence number m=0.
  2. Find the most similar pair of clusters in the current clustering, say pair (r),(s), according to d[(r),(s)]=maxd[(i),(j)]where the maximum is over all pairs of clusters in the current clustering.
  3. Increment the sequence number: m=m+1. Merge clusters (r) and (s) into a single cluster to form the next clustering m. Set the level of this clustering to L(m)=d[(r),(s)]
  4. Update the proximity matrix, D, by deleting the rows and columns corresponding to clusters (r) and (s) and adding a row and column corresponding to the newly formed cluster. The proximity between the new cluster, denoted (r,s), and an old cluster (k) is defined as d[(r,s),(k)]=max{d[(k),(r)],d[(k),(s)]}.
  5. If all objects are in one cluster, stop. Else, go to step 2.

Optimally efficient scheme

[edit | edit source]

The algorithm explained above is easy to understand but of complexity O(n3). In May 1976, D. Defays proposed an optimally efficient algorithm of only complexity O(n2) known as CLINK (published 1977)[4] inspired by the similar algorithm SLINK for single-linkage clustering.

Working example

[edit | edit source]

The working example is based on a JC69 genetic distance matrix computed from the 5S ribosomal RNA sequence alignment of five bacteria: Bacillus subtilis (a), Bacillus stearothermophilus (b), Lactobacillus viridescens (c), Acholeplasma modicum (d), and Micrococcus luteus (e).[5][6]

First step

[edit | edit source]
  • First clustering

Let us assume that we have five elements (a,b,c,d,e) and the following matrix D1 of pairwise distances between them:

a b c d e
a 0 17 21 31 23
b 17 0 30 34 21
c 21 30 0 28 39
d 31 34 28 0 43
e 23 21 39 43 0

In this example, D1(a,b)=17 is the smallest value of D1, so we join elements a and b.

  • First branch length estimation

Let u denote the node to which a and b are now connected. Setting δ(a,u)=δ(b,u)=D1(a,b)/2 ensures that elements a and b are equidistant from u. This corresponds to the expectation of the ultrametricity hypothesis. The branches joining a and b to u then have lengths δ(a,u)=δ(b,u)=17/2=8.5 (see the final dendrogram)

  • First distance matrix update

We then proceed to update the initial proximity matrix D1 into a new proximity matrix D2 (see below), reduced in size by one row and one column because of the clustering of a with b. Bold values in D2 correspond to the new distances, calculated by retaining the maximum distance between each element of the first cluster (a,b) and each of the remaining elements:

D2((a,b),c)=max(D1(a,c),D1(b,c))=max(21,30)=30

D2((a,b),d)=max(D1(a,d),D1(b,d))=max(31,34)=34

D2((a,b),e)=max(D1(a,e),D1(b,e))=max(23,21)=23

Italicized values in D2 are not affected by the matrix update as they correspond to distances between elements not involved in the first cluster.

Second step

[edit | edit source]
  • Second clustering

We now reiterate the three previous steps, starting from the new distance matrix D2 :

(a,b) c d e
(a,b) 0 30 34 23
c 30 0 28 39
d 34 28 0 43
e 23 39 43 0

Here, D2((a,b),e)=23 is the lowest value of D2, so we join cluster (a,b) with element e.

  • Second branch length estimation

Let v denote the node to which (a,b) and e are now connected. Because of the ultrametricity constraint, the branches joining a or b to v, and e to v, are equal and have the following total length: δ(a,v)=δ(b,v)=δ(e,v)=23/2=11.5

We deduce the missing branch length: δ(u,v)=δ(e,v)δ(a,u)=δ(e,v)δ(b,u)=11.58.5=3 (see the final dendrogram)

  • Second distance matrix update

We then proceed to update the D2 matrix into a new distance matrix D3 (see below), reduced in size by one row and one column because of the clustering of (a,b) with e :

D3(((a,b),e),c)=max(D2((a,b),c),D2(e,c))=max(30,39)=39

D3(((a,b),e),d)=max(D2((a,b),d),D2(e,d))=max(34,43)=43

Third step

[edit | edit source]
  • Third clustering

We again reiterate the three previous steps, starting from the updated distance matrix D3.

((a,b),e) c d
((a,b),e) 0 39 43
c 39 0 28
d 43 28 0

Here, D3(c,d)=28 is the smallest value of D3, so we join elements c and d.

  • Third branch length estimation

Let w denote the node to which c and d are now connected. The branches joining c and d to w then have lengths δ(c,w)=δ(d,w)=28/2=14 (see the final dendrogram)

  • Third distance matrix update

There is a single entry to update: D4((c,d),((a,b),e))=max(D3(c,((a,b),e)),D3(d,((a,b),e)))=max(39,43)=43

Final step

[edit | edit source]

The final D4 matrix is:

((a,b),e) (c,d)
((a,b),e) 0 43
(c,d) 43 0

So we join clusters ((a,b),e) and (c,d).

Let r denote the (root) node to which ((a,b),e) and (c,d) are now connected. The branches joining ((a,b),e) and (c,d) to r then have lengths:

δ(((a,b),e),r)=δ((c,d),r)=43/2=21.5

We deduce the two remaining branch lengths:

δ(v,r)=δ(((a,b),e),r)δ(e,v)=21.511.5=10

δ(w,r)=δ((c,d),r)δ(c,w)=21.514=7.5

The complete-linkage dendrogram

[edit | edit source]

WPGMA Dendrogram 5S data
WPGMA Dendrogram 5S data

The dendrogram is now complete. It is ultrametric because all tips (a to e) are equidistant from r :

δ(a,r)=δ(b,r)=δ(e,r)=δ(c,r)=δ(d,r)=21.5

The dendrogram is therefore rooted by r, its deepest node.

Comparison with other linkages

[edit | edit source]

Alternative linkage schemes include single linkage clustering and average linkage clustering - implementing a different linkage in the naive algorithm is simply a matter of using a different formula to calculate inter-cluster distances in the initial computation of the proximity matrix and in step 4 of the above algorithm. An optimally efficient algorithm is however not available for arbitrary linkages. The formula that should be adjusted has been highlighted using bold text.

Complete linkage clustering avoids a drawback of the alternative single linkage method - the so-called chaining phenomenon, where clusters formed via single linkage clustering may be forced together due to single elements being close to each other, even though many of the elements in each cluster may be very distant to each other. Complete linkage tends to find compact clusters of approximately equal diameters.[7]

Comparison of dendrograms obtained under different clustering methods from the same distance matrix.
File:Simple linkage-5S.svg
File:Complete linkage Dendrogram 5S data.svg
File:WPGMA Dendrogram 5S data.svg
File:UPGMA Dendrogram 5S data.svg
Single-linkage clustering. Complete-linkage clustering. Average linkage clustering: WPGMA. Average linkage clustering: UPGMA.

See also

[edit | edit source]

References

[edit | edit source]
  1. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
  2. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
  3. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
  4. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
  5. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
  6. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
  7. ^ Everitt, Landau and Leese (2001), pp. 62–64.

Further reading

[edit | edit source]
  • Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).