I have a clustermap plot currently created in matplotlib/seaborn, that I’ve made dynamic (using the mpld3 library), so that when I hover over each square of the heatmap, a separate histogram is plotted above the heatmap (small video here; in the full example I expect to use a heatmap of ~250 x 250 categories).
It has been suggested that I should consider doing this in bokeh instead, but I have no experience with this. I see that there is a clustermap implementation at bokehheat · PyPI but I have not found anyone implementing a bokeh histogram which updates on hovering over a heatmap. In bokeh, is it relatively easy to implement dynamic plots which are updated on hovering over specific plot regions, and if so, could someone give me some pointers or links to get me started?
Thanks!
Yan