More info at: http://holoviz.org/
Questions tagged [holoviz]
108 questions
2
votes
1 answer
With pyviz/panel, how do I modify values in panes only when a button is clicked?
I'd like to make a dashboard with pyviz/panel so that it doesn't refresh live as soon as the values of the widgets are changed. Instead, I'd like for it to wait for a button click and only then, change the values in the dashboard accordingly.
A…

zover_cat
- 25
- 3
2
votes
1 answer
How to keep or set width and height of my holoviews plot when using datashade?
I'm trying to create a plot with multiple categories, and have a plot for every category.
Since there are so many datapoints, I'm using datashade. But datashade ignores the width and height that I set for those plots.
How can I keep the width and…

Sander van den Oord
- 10,986
- 5
- 51
- 96
2
votes
1 answer
changing holoviews axis to be in the right format
I'm trying to create a plot with multiple axis. But instead of putting Gene and db on the x axis and mutations on the y axis holoviews plots db on the y axis and gene on the x axis.
How can i get a multi categorial plot out of this?…

Moopsish
- 117
- 10
1
vote
1 answer
Python Panel Dashboard - Multi-Page app not updating as expected
I want a Python Panel app which shows different page content based on a radio button selection in the sidebar.
There's some example code for doing exactly this in the way I want, shown as "Option 3"…

Max Power
- 8,265
- 13
- 50
- 91
1
vote
1 answer
How to add and remove elements to/from Select in Holoviz panel dynamically?
I want to create a dynamic list with Holoviz's panel library. I want to be able to add and remove elements from this dynamic list. I use jupyter.
I have some code that has the UI and adds elements to the list. When I print the list, I can see that…

ambrustorok
- 70
- 6
1
vote
0 answers
How to export a Tabulator widget to a csv file in pyscript
Using pyscript, I am creating an html file that displays a panel Tabulator. Next to this table, there must be two other widgets: a text input, where a user can enter the filename of the file it wants to save, and a button. Such a button, when…

Andrea Nicolai
- 349
- 1
- 3
- 12
1
vote
0 answers
Multiselect Hvplot Dropdown
Want to multiselect values in hvplot dropdown.
Hi, I have been trying to create a interactive plot in python using hvplot. When I use the groupby argument and call a column in dataframe.hvplot(x, y groupby=" "), it correctly returns a dropdown with…

Raghav Khandelwal
- 23
- 4
1
vote
1 answer
Legend for gridded Holoviews visualization with categorical data
I'm using the holoviz xarray extension (holoviews.xarray) to visualize a gridded dataset with landcover classes. Plotting the data is straightforward with da.hvplot(). This results however in a continuous colormap with standard tick labels, whereas…

sir_olf
- 11
- 4
1
vote
1 answer
Holoviz Tutorial Installation: "anaconda-project run jupyter notebook" step fails on Linux + Win 10
Guessing its a anaconda-project problem
Linux 5.15.0-43-generic: python 3.10.4 , anaconda-project 0.11.0
Windows 10 Pro, 21H2: python 3.10.4, anaconda-project 0.11.0
Followed directions at: https://holoviz.org/tutorial/Setup.html
All successful…

Saqster
- 119
- 1
- 1
- 8
1
vote
1 answer
How to configure header filters in a HoloViz Panel Tabulator widget?
I am using Panel from HoloViz to create a dashboard web application. I am using Panel's Tabulator widget to display a table of records. Panel's Tabulator widget is based on the Tabulator javascript library.
I would like to add a header filter to my…

urig
- 16,016
- 26
- 115
- 184
1
vote
2 answers
Weird error "No plugins loaded for this entry: xarray_image" when using hvplot
Here's the code how I use hvplot
from hvplot.sample_data import us_crime
columns = ['Burglary rate', 'Larceny-theft rate', 'Robbery rate', 'Violent Crime rate']
us_crime.plot.violin(y=columns, group_label='Type of crime', value_label='Rate per…

zjffdu
- 25,496
- 45
- 109
- 159
1
vote
1 answer
How to sync a bokeh/panel animation with a video player like dash.js?
I am using bokeh and panel to create an animated plot together with some navigation controls like a slider, play/pause, skip 5s, etc.
At the same time, there is video footage which I would like to display in sync with that animation. I started…

Ansgar T.
- 111
- 6
1
vote
0 answers
Formatting error when I make sphinx-build docs for classes that inherits param.Parameterized
I am trying to create documentation for some software I am making and I have ran into the following problem. Any of my classes that inherits from param.Parameterized repo here end up having what looks like a "mini" documentation of param written in…

grant_m_s
- 11
- 1
1
vote
0 answers
holoviz/holoviews/panel: default setting of axes limits of a holomap "layouted" in separate panes
I would like to know what would be the best way to have elements that are part of the same holomap layout but on separate panel panes have their axes limits computed the same way like when the entire layout is rendered.
It is simpler with the…

Pierre Massé
- 693
- 1
- 5
- 23
1
vote
1 answer
holoviz/param/panel: updating Str or HTML panes via python callback
I would like to know if there is a way to update a panel pane content through a python callback.
If I define a Parameterized custom class the following way:
import panel as pn
pn.extension()
import param
class Myclass(param.Parameterized):
…

Pierre Massé
- 693
- 1
- 5
- 23