I have a dendrogram in R. It is based on hierachical clustering using hclust. I am colouring labels that are different in different colours, but when I try changing the labels of my dedrogram (to the rows of the dataframe the cluster is based on) using dendrogram = dendrogram %>% set("labels", dataframe$column)
the labels are replaced, but in the wrong positions. As example:
My dendrogram looks like this:
___|___
| _|_
| | |
| 1 0
2
when I now try changing the labels like specified above, the labels are changed, but they are applied from left to right in their order in the dataframe. If we assume my original dataframe looks like this
df:
Column1 Column2
0 1 A
1 2 B
2 3 C
what I want to have is this:
___|___
| _|_
| | |
| B A
C
But what I actually get is:
___|___
| _|_
| | |
| B C
A
the clustering of the data and their transformation into dendrogram was done as follows:
> d <- stringdistmatrix(df$Column1, df$Column1)
> cl <- hclust(as.dist(d))
> dend = as.dendrogram(cl)
Can anybody tell me how I can label my dendrogram with the values of another column based on the index?
The dendextend package allows you to directly update dendrograms (as well as hclust), by using the following:
x <- c(1:5)
dend <- as.dendrogram(hclust(dist(x)))
if(!require(dendextend)) install.packages("dendextend")
library("dendextend")
labels(dend)
labels(dend) <- c(21:25)
labels(dend)