currently I working on cytometry dataset processing. briefly saying, a high dimensional dataset (100k samples) with 10 channels (features). there will be a number of dual-channel scatter plots. I would like to view it on a channel A and channel B and find if there is a cluster on the top right part. if yes, I would like to select the cluster and than view this cluster on other dual-channel scatter plots. that’s it. I checked the example below. however, I wonder if there is a way to reuse all the plots rather than to generate them on each selection?
thanks for your reply. to clarify, my concern is that, rendering 12 scatter plots with at least 10k samples each really takes time. it’s around 10s in my implementation. I would like to quickly select some points on the first plot and show only them on others, which means I don’t need other calculation etc.
my previous solution is fetching the figure (json) and selection index and updating layout and returning the figure json obj, which means each time I do selection, I need to wait 10 seconds (perhaps).
your recommendation of Patch really helps. the performance gets really better. though think it’s quite not convenience to use this class.