I want draw circular dendrogram with R. I used dendextend package and followed example instructions.
However there is no description for annotatining height(distance) information. How to visualize height information?
Distance matrix
mat=matrix(abs(rnorm(100)),10,10);dimnames(mat)=list(letters[1:10],letters[1:10]) ma2=as.dist(mat)
dendrogram with distance info
hc=hclust(ma2)
dend=as.dendrogram(hc)
plot(dend)
Circular dendrogram without distance info (How to add height info for circular dendrogram?
library(dendextend)
circlize_dendrogram(dend = dend)
What a wonderful solution! Thank you very much!
You're welcome! - thanks.