Given the example in https://plotly.com/ggplot2/dendrogram/
library(plotly)
library(ggplot2)
library(ggdendro)
hc <- hclust(dist(USArrests), "ave")
p <- ggdendrogram(hc, rotate = FALSE, size = 2)
ggplotly(p)
How can I display the labels within the tooltip when hoovering over the bottom of the graphic? I have many individuals and the text labels are inconvenient. Also regarding classes, how would I do the equivalent to:
cl <- cutree(hc,5)
plot(hc,labels=cl)
To show the state name or the labels in the tooltip when covering over the leafs of your dendrogram you could add an (in)visible
geom_point
to whose tooltip you can add the labels via thetext
attribute. To this end we first have to get the leaf positions and labels usingdendro_data()
. And to use the results fromcutree()
for the leaf labels you could overwrite the default x scale using the values fromcutree()
for the labels, where we have to make sure that we pass them in the right order.