Dendrogram using Bokeh

Hi everyone,

Does Bokeh have an inbuilt support for creating a dendrogram plot? I am trying to render a dendrogram plot using Bokeh.

At present I am using scipy.dendrogram to generate a matplotlib dendrogram. It is similar to this example:
https://docs.scipy.org/doc/scipy/reference/generated/scipy.cluster.hierarchy.dendrogram.html

Has anyone implement this using Bokeh? Any guidance or help would be much appreciated!

There is nothing built in to Bokeh for creating dendrograms. You could certainly draw those same plots using Bokeh, no question, but would need to compute the line coordinates yourself.