Skip to content

Instantly share code, notes, and snippets.

@qnicole-zakka
Created March 16, 2021 01:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qnicole-zakka/bb6d0d8c85ae76df37515975dcf54bb2 to your computer and use it in GitHub Desktop.
Save qnicole-zakka/bb6d0d8c85ae76df37515975dcf54bb2 to your computer and use it in GitHub Desktop.
Holoviews with Bokeh as backend, render HTML pages into SVG
# try exportation with Bokeh backend to svg
from bokeh.io import export_svgs
p = hv.render(chord_plot, backend='bokeh')
p.output_backend = "svg"
export_svgs(p, filename="chord.svg", webdriver=web_driver)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment