Articles - Hierarchical Clustering Essentials

Hierarcical clustering methods

Hierarchical clustering [or hierarchical cluster analysis (HCA)] is an alternative approach to partitioning clustering for grouping objects based on their similarity. In contrast to partitioning clustering, hierarchical clustering does not require to pre-specify the number of clusters to be produced.

Hierarchical clustering can be subdivided into two types:

  • Agglomerative clustering in which, each observation is initially considered as a cluster of its own (leaf). Then, the most similar clusters are successively merged until there is just one single big cluster (root).

  • Divise clustering, an inverse of agglomerative clustering, begins with the root, in witch all objects are included in one cluster. Then the most heterogeneous clusters are successively divided until all observation are in their own cluster.

The result of hierarchical clustering is a tree-based representation of the objects, which is also known as dendrogram (see the figure below).

The dendrogram is a multilevel hierarchy where clusters at one level are joined together to form the clusters at the next levels. This makes it possible to decide the level at which to cut the tree for generating suitable groups of a data objects.

In previous chapters, we defined several methods for measuring distances between objects in a data matrix. In this chapter, we’ll show how to visualize the dissimilarity between objects using dendrograms.

We start by describing hierarchical clustering algorithms and provide R scripts for computing and visualizing the results of hierarchical clustering. Next, we’ll demonstrate how to cut dendrograms into groups. We’ll show also how to compare two dendrograms. Additionally, we’ll provide solutions for handling dendrograms of large data sets.

How this part is organized

Agglomerative Clustering

Contents:

  • Algorithm
  • Steps to agglomerative hierarchical clustering
    • Data structure and preparation
    • Similarity measures
    • Linkage
    • Dendrogram
  • Verify the cluster tree
  • Cut the dendrogram into different groups
  • Cluster R package
  • Application of hierarchical clustering to gene expression data analysis

Divisive Hierarchical Clustering

Contents:

  • Algorithm
  • Computation

Comparing Dendrograms

Contents:

  • Visual comparison of two dendrograms
  • Correlation matrix between a list of dendrograms

Visualizing Dendrograms

Contents:

  • Visualizing dendrograms
  • Case of dendrogram with large data sets
    • Zooming in the dendrogram
    • Plotting a sub-tree of dendrograms
    • Saving dendrogram into a large PDF page
  • Manipulating dendrograms using dendextend

Heatmap: Static and Interactive

Contents:

  • R Packages/functions for drawing heatmaps
  • Data preparation
  • R base heatmap: heatmap()
  • Enhanced heat maps: heatmap.2()
  • Pretty heat maps: pheatmap()
  • Interactive heat maps: d3heatmap()
  • Enhancing heatmaps using dendextend
  • Complex heatmap
    • Simple heatmap
    • Splitting heatmap by rows
    • Heatmap annotation
  • Application to gene expression matrix
  • Visualizing the distribution of columns in matrix

Related Book:

Sort by