I have a dataset (Pandas DataFrame) that I'm plotting in a Bokeh scatter plot by means of hvplot
. For each and every datapoint in that master dataset (also DataFrame) there is an additional dataset available with more detailed data.
I would like to plot that additional detail dataset in a separate plot each time a datapoint is selected in the master plot.
All of that is to be done in Jupyter Lab.
Is that possible, if it is, how would I go on about it? Will it need utilization of hooks?