Skip to content

Instantly share code, notes, and snippets.

@MarcSkovMadsen
Last active January 3, 2023 20:12
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save MarcSkovMadsen/ffb273636dced88705c8c88d5ee28f23 to your computer and use it in GitHub Desktop.
Save MarcSkovMadsen/ffb273636dced88705c8c88d5ee28f23 to your computer and use it in GitHub Desktop.
Example of using hvPlot .interactive with Panel
import pandas as pd
import hvplot.pandas
import panel as pn
pn.extension(sizing_mode="stretch_width")
PALETTE = [
"#ff6f69",
"#ffcc5c",
"#88d8b0",
]
ACCENT_BASE_COLOR = PALETTE[0]
URL = "https://data.seattle.gov/api/views/65db-xm6k/rows.csv?accessType=DOWNLOAD"
LOCAL_FILE = "rows.csv"
INFO = f"""\
## Widgets as arguments in your Pandas pipeline!
"""
SOURCE_INFO = f"""\
## Data
Bicycle counts on Seattle's Fremont Bridge
"""
# Data
try:
seattle_bikes = pd.read_csv(LOCAL_FILE, parse_dates=["Date"]).set_index("Date")
except Exception:
seattle_bikes = pd.read_csv(URL, parse_dates=["Date"]).set_index("Date")
seattle_bikes.to_csv(LOCAL_FILE)
# Widgets
resample = pn.widgets.Select(value="D", options=["D", "W", "M"], name="Sampling Frequency")
window = pn.widgets.IntSlider(value=50, start=10, end=100, name="Rolling Window Length")
center = pn.widgets.Checkbox(value=True, name="Center")
win_type = pn.widgets.Select(value="gaussian", options=[None, "gaussian"], name="Window Type")
std = pn.widgets.IntSlider(value=10, start=5, end=20, name="std")
line_width = pn.widgets.IntSlider(value=6, start=1, end=20, name="Line Width")
# A Pandas Dataframe made .interactive with hvPlot
pipeline = (
seattle_bikes.interactive()
.resample(resample)
.sum()
.rolling(window, center=center, win_type=win_type)
.sum(std=std)
.dropna()
)
# Interactive Plot
plot = pn.panel(
pipeline.hvplot(
responsive=True,
color=PALETTE,
line_width=line_width,
yformatter="%.0f",
).holoviews().opts(legend_position='top_left'),
sizing_mode="stretch_both",
name="Plot",
)
# Interactive Table
table = pipeline.pipe(
pn.widgets.Tabulator,
pagination="remote",
page_size=20,
theme="fast",
sizing_mode="stretch_both",
).panel(name="Table")
# Layout
tabs = pn.layout.Tabs(plot, table, margin=(10, 25), sizing_mode="stretch_both")
panel_logo = pn.pane.PNG(
"https://panel.holoviz.org/_static/logo_stacked.png",
link_url="https://panel.holoviz.org",
embed=False,
sizing_mode="fixed",
height=100,
margin=(10,10),
align="start",
)
hvplot_logo = pn.pane.PNG(
"https://hvplot.holoviz.org/assets/hvplot-wm.png",
link_url="https://hvplot.holoviz.org/",
embed=False,
sizing_mode="fixed",
height=100,
margin=(10,10),
align="center",
)
pandas = pn.pane.HTML("<div style='font-size: 100px;text-align: center'>🐼</div>", height=100, margin=(10,5,10,5))
pn.template.FastListTemplate(
site="Awesome Panel",
title="Hvplot makes your Pandas pipeline .interactive",
sidebar=[SOURCE_INFO, "## Pandas Pipeline", resample, window, center, win_type, std, "## Plot", line_width, pn.Spacer(height=150), pn.Row(panel_logo, hvplot_logo), pandas],
main=[INFO, tabs],
accent_base_color=ACCENT_BASE_COLOR,
header_background=ACCENT_BASE_COLOR,
).servable()
@MarcSkovMadsen
Copy link
Author

MarcSkovMadsen commented Oct 31, 2021

Install

pip install panel==0.12.4 bokeh==2.4.1 hvplot==0.7.3 holoviews==1.14.6 pandas==1.3.1

Serve

panel serve hvplot_interactive.py

Resources

Assets

hvplot-interactive-speedup.mp4

Gif x1.7 width 800

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment