Currently I'm using ggplot2
and ggdendro
to plot dendrograms. However Now I'm in need to plot a discrete variable under the leaves along with the labels.
For instance, in a publication (Zhang et al., 2006) I saw a dendrogram like this (notice th color bar under the leaf labels):
I'm interested in doing the same with ggdendro + ggplot2, using data which I have already binned. Is this possible?
First, you need to make dataframe for the color bar. For example I used data
USArrests
- made clustering withhclust()
function and saved the object. Then using this clustering object divided it in cluster using functioncutree()
and saved as column cluster. Columnstates
contains labels of clustering objecthc
and the levels of this object are ordered the same as in output ofhc
.Now save as objects two plots - dendrogram and colorbar that is made with
geom_tile()
usingstates
as x values andcluster
number for colors. Formatting is done to remove all axis.Now you can use answer of @Baptiste to this question to align both plots.