Replies: 1 comment
-
I've created an issue to track this: #1867 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Anybody here know a quick workaround to get this to work? (I did submit an issue in quarto-python)
title: "Quarto Basics"
format:
html:
code-fold: true
jupyter: python3
#| label: holoviews
#| fig-cap: "Holoviews plot"
import numpy as np
import holoviews as hv;
hv.extension('bokeh', logo=False);
r = np.arange(0, 2, 0.01)
theta = 4 * np.pi * r
hv.Curve((theta,r))
`
Beta Was this translation helpful? Give feedback.
All reactions