hvPlot.dataset#
- hvPlot.dataset(columns=None, **kwds)[source]#
The ‘dataset’ wraps a tabular or gridded dataset and can be further transformed and annotated via methods from HoloViews.
- Parameters:
- **kwdsoptional
Additional keywords arguments are documented in hvplot.help(‘dataset’). See Plotting Options for more information.
- Returns:
holoviews.element.Dataset
/ Panel objectYou can print the object to study its composition and run:
import holoviews as hv hv.help(the_holoviews_object)
to learn more about its parameters and options.
References
HoloViews Tabular: https://holoviews.org/getting_started/Tabular_Datasets.html
HoloViews Gridded: https://holoviews.org/getting_started/Gridded_Datasets.html
Examples
import hvplot.pandas import pandas as pd data = pd.DataFrame({"x": ['a', 'b', 'c'], "y": [1, 2, 3]}) data.hvplot.dataset()
Examples#
TBD
This web page was generated from a Jupyter notebook and not all
interactivity will work on this website.