-
-
Save LinuxIsCool/98754c9bf462981d622c21b9f36bb453 to your computer and use it in GitHub Desktop.
Linked brushing with HoloViz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# pip install pandas hvplot==0.7.1 holoviews==1.14.3 bokeh panel==0.11.3 | |
# panel serve holoviz_linked_brushing.py --auto --show | |
import hvplot.pandas | |
import holoviews as hv | |
import panel as pn | |
from bokeh.sampledata.iris import flowers | |
pn.extension(sizing_mode="stretch_width") | |
hv.extension("bokeh") | |
accent_color = "#ff286e" | |
scatter = flowers.hvplot.scatter( | |
x="sepal_length", y="sepal_width", c=accent_color, responsive=True, height=350 | |
) | |
hist = flowers.hvplot.hist("petal_width", c=accent_color, responsive=True, height=350) | |
scatter.opts(size=10) | |
selection_linker = hv.selection.link_selections.instance() | |
scatter = selection_linker(scatter) | |
hist = selection_linker(hist) | |
scatter.opts(tools=["hover"], active_tools=["box_select"]) | |
hist.opts(tools=["hover"], active_tools=["box_select"]) | |
pn.template.FastListTemplate( | |
site="Awesome Panel and HoloViews", | |
title="Cross Filtering/ Linked Brushing", | |
header_background=accent_color, | |
main=[scatter, hist], | |
).servable() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment