holoviz#

This content is from a Jupyter Notebook and is being embedded using the NotebookDirective.

Checking HoloViz outputs.

HoloViews#

import holoviews as hv
import pandas as pd

hv.extension('bokeh', 'plotly', 'matplotlib')

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

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

hvPlot#

import hvplot.pandas  # noqa

df.hvplot.scatter(x='x', y='y')
hvplot.output(backend='plotly')

df.hvplot.scatter(x='x', y='y')
hvplot.output(backend='matplotlib')

df.hvplot.scatter(x='x', y='y')

Panel#

import panel as pn

pn.widgets.IntInput()
This web page was generated from a Jupyter notebook and not all interactivity will work on this website. Right click to download and run locally for full Python-backed interactivity.

Right click to download this notebook from GitHub.