R (package superheat) - adding color (or rectangles) to the dendrograms

193 Views Asked by At

Minimal example and package documentation (https://rlbarter.github.io/superheat/):

library(superheat)
superheat(mtcars,
          # scale the matrix columns
          scale = TRUE,
          left.label = "none",
          # add row dendrogram
          col.dendrogram = TRUE, 
          legend=F,
          )

enter image description here

I would like to achieve two things:

  • Color branches according to cluster (which necessarily I will have to determine k number of clusters) OR add rectangles on top of "chosen" clusters.
  • I would also be keen to extract and apply the same dendrogram to a different data set (with the same variables).

I believe the dendrogram is created used ggdendro (if that may assist).

Consequently these are example of what I wanna achieve:enter image description here

1

There are 1 best solutions below

0
On

The ggdendro package does not support branch colors, and in general it is no longer supported. It was superseded by the dendextend package (which includes the ggdend object, which does support branch colors, lwd and lty). You can prepare your dendrograms using dendextend and feed them into a heatmap.2 function from gplots. Alternatively, you can look into the heatmaply package.

Good luck.