Contents
UPGMA
UPGMA (unweighted pair group method with arithmetic mean) is a simple agglomerative (bottom-up) hierarchical clustering method. It also has a weighted variant, WPGMA, and they are generally attributed to Sokal and Michener. Note that the unweighted term indicates that all distances contribute equally to each average that is computed and does not refer to the math by which it is achieved. Thus the simple averaging in WPGMA produces a weighted result and the proportional averaging in UPGMA produces an unweighted result (see the working example).
Algorithm
The UPGMA algorithm constructs a rooted tree (dendrogram) that reflects the structure present in a pairwise similarity matrix (or a dissimilarity matrix). At each step, the nearest two clusters are combined into a higher-level cluster. The distance between any two clusters \mathcal{A} and \mathcal{B}, each of size (i.e., cardinality) and, is taken to be the average of all distances d(x,y) between pairs of objects x in \mathcal{A} and y in \mathcal{B}, that is, the mean distance between elements of each cluster: In other words, at each clustering step, the updated distance between the joined clusters and a new cluster X is given by the proportional averaging of the and distances: The UPGMA algorithm produces rooted dendrograms and requires a constant-rate assumption - that is, it assumes an ultrametric tree in which the distances from the root to every branch tip are equal. When the tips are molecular data (i.e., DNA, RNA and protein) sampled at the same time, the ultrametricity assumption becomes equivalent to assuming a molecular clock.
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 (a), Bacillus stearothermophilus (b), Lactobacillus viridescens (c), Acholeplasma modicum (d), and Micrococcus luteus (e).
First step
Let us assume that we have five elements (a,b,c,d,e) and the following matrix D_1 of pairwise distances between them : In this example, is the smallest value of D_1, so we join elements a and b. Let u denote the node to which a and b are now connected. Setting 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 (see the final dendrogram) We then proceed to update the initial distance matrix D_1 into a new distance matrix D_2 (see below), reduced in size by one row and one column because of the clustering of a with b. Bold values in D_2 correspond to the new distances, calculated by averaging distances between each element of the first cluster (a,b) and each of the remaining elements: Italicized values in D_2 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 steps, starting from the new distance matrix D_2 Here, is the smallest value of D_2, so we join cluster (a,b) and element e. 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 length: We deduce the missing branch length: (see the final dendrogram) We then proceed to update D_2 into a new distance matrix D_3 (see below), reduced in size by one row and one column because of the clustering of (a,b) with e. Bold values in D_3 correspond to the new distances, calculated by proportional averaging: Thanks to this proportional average, the calculation of this new distance accounts for the larger size of the (a,b) cluster (two elements) with respect to e (one element). Similarly: Proportional averaging therefore gives equal weight to the initial distances of matrix D_1. This is the reason why the method is unweighted, not with respect to the mathematical procedure but with respect to the initial distances.
Third step
We again reiterate the three previous steps, starting from the updated distance matrix D_3. Here, is the smallest value of D_3, so we join elements c and d. Let w denote the node to which c and d are now connected. The branches joining c and d to w then have lengths (see the final dendrogram) There is a single entry to update, keeping in mind that the two elements c and d each have a contribution of 1 in the average computation:
Final step
The final D_4 matrix is: 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: We deduce the two remaining branch lengths:
The UPGMA dendrogram
The dendrogram is now complete. It is ultrametric because all tips (a to e) are equidistant from r : The dendrogram is therefore rooted by r, its deepest node.
Comparison with other linkages
Alternative linkage schemes include single linkage clustering, complete linkage clustering, and WPGMA average linkage clustering. Implementing a different linkage is simply a matter of using a different formula to calculate inter-cluster distances during the distance matrix update steps of the above algorithm. Complete linkage clustering avoids a drawback of the alternative single linkage clustering 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.
Uses
Time complexity
A trivial implementation of the algorithm to construct the UPGMA tree has O(n^3) time complexity, and using a heap for each cluster to keep its distances from other cluster reduces its time to. Fionn Murtagh presented an O(n^2) time and space algorithm.
This article is derived from Wikipedia and licensed under CC BY-SA 4.0. View the original article.
Wikipedia® is a registered trademark of the
Wikimedia Foundation, Inc.
Bliptext is not
affiliated with or endorsed by Wikipedia or the
Wikimedia Foundation.