Panel is an open-source Python library that lets you create custom interactive web apps and dashboards by connecting user-defined widgets to plots, images, tables, or text.
Questions tagged [panel-pyviz]
49 questions
0
votes
2 answers
Python Panel Template change the Title from Bokeh Application to MyApp
I am running the example https://panel.pyviz.org/user_guide/Templates.html and would like to change the title from "Bokeh Application" to "My App".
import panel as pn
import holoviews as hv
from jinja2 import Environment,…

Michel Latch
- 5
- 4
0
votes
1 answer
Python Panel passing dataframe to param.Parameterized
Python Panel passing a dataframe in param.Parameterized class
I can build a dashboard using panel. I know want to include the code in a class including the data manipulation.
df = ydata.load_web(rebase=True)
class Plot(param.Parameterized):
…

Michel Latch
- 5
- 4
0
votes
1 answer
Holoviz panel will not print pandas dataframe row in Jupyter notebook
I'm trying to recreate the first panel.interact example in the Holoviz tutorial using a Pandas dataframe instead of a Dask dataframe. I get the slider, but the pandas dataframe row does not show.
See the original example at:…

tpegbert
- 176
- 1
- 6
0
votes
1 answer
Return the value of Panel's slider widget
I'm using Panel's slider widget to inspect some data and I want to use the values of this widget as an argument of other functions.
I built my own code based on this one:
import hvplot.pandas
import panel as pn
import holoviews as hv
from…

lsdR94
- 35
- 1
- 5