1

I ran this example code from Holoviews, but it does not generate the image and it doesn't give any errors. Anyone knows why the image is not showing? Here is the link of the code: http://holoviews.org/gallery/apps/bokeh/mandelbrot.html

Elmer Rock
  • 13
  • 2

1 Answers1

0

The HoloViews examples in examples/gallery/apps/bokeh/ are Bokeh apps that can be served by saving them to a .py file like app.py and then running bokeh serve app.py. To use them in Jupyter, you can delete the lines starting with doc (not used in Jupyter) and instead add code at the end to install the Jupyter support and select which object to display:

hv.extension("bokeh")
dmap

That's clearly not obvious, so please open an issue at https://github.com/holoviz/holoviews/issues to ask for those examples to be better documented!

James A. Bednar
  • 3,195
  • 1
  • 9
  • 13