JADT 2022. Appendix II

Appendix II

It is easy to use the resulting Xplortext dendrogram with the R
package that each person uses for the graphical representation of their
dendrograms.
We can retrieve the dendrogram from $dendro obtaining the hclust
class:

my.hclust <- cl.TEST.0.05.descr$dendro
class(my.hclust)
[1] "hclust"
plot(my.hclust)

cl <- as.dendrogram(cl.TEST.0.05.descr$dendro)
plot(cl)

ggdendro::ggdendrogram(my.hclust, rotate = TRUE, size = 4, theme_dendro = TRUE)