preexecuted#

vscode:

{"interpreter": {"hash": "a3cfe37c027961dff1f8cd9fb20fb9d0201ea43affa80c7c6c385674ce4d41fa"}}

This content is from a Jupyter Notebook and is being embedded using the NotebookDirective. This notebook has been executed and committed with outputs on the repo. The NotebookDirective is set not to execute it.

Checking HoloViz outputs.

HoloViews#

import holoviews as hv
import pandas as pd

hv.extension('bokeh')

df = pd.DataFrame({'x': [0, 10, 20], 'y': [5, 1, 9]})

hv.Curve(df, kdims='x', vdims='y')