plotly (version 4.9.2.1)

plot_dendro: Plot an interactive dendrogram

Description

This function takes advantage of nested key selections to implement an interactive dendrogram. Selecting a node selects all the labels (i.e. leafs) under that node.

Usage

plot_dendro(d, set = "A", xmin = -50, height = 500, width = 500, ...)

Arguments

d

a dendrogram object

set

defines a crosstalk group

xmin

minimum of the range of the x-scale

height

height

width

width

...

arguments supplied to subplot()

See Also

plot_ly(), plot_mapbox(), ggplotly()

Examples

Run this code
# NOT RUN {
# }
# NOT RUN {
hc <- hclust(dist(USArrests), "ave")
dend1 <- as.dendrogram(hc)
plot_dendro(dend1, height = 600) %>% 
  hide_legend() %>% 
  highlight(persistent = TRUE, dynamic = TRUE)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace