Questions tagged [holoviz]

More info at: http://holoviz.org/

108 questions
0
votes
1 answer

Set title to a simple Holoviews plot (python)

I have a simple Holoviews plot, in this case a scatter or points plot, but it has no title. How do I add a title to this plot? # import libraries import numpy as np import holoviews as hv from holoviews import opts hv.extension('bokeh') # create…
Sander van den Oord
  • 10,986
  • 5
  • 51
  • 96
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
-1
votes
1 answer

Insert panel Button widget into HTML table

Is it possible to insert - for example - a pn.widgets.Button() widget into a HTML table cell in a pn.pane.HTML() panel? Something like: import panel as pn def button_callback(event): pn.pane.Alert("Button clicked!",…
25334
  • 25
  • 4
1 2 3 4 5 6 7
8