ItemTable#

Download this notebook from GitHub (right-click to download).


Title
ItemTable Element
Dependencies
Plotly
Backends
Bokeh
Matplotlib
Plotly
import holoviews as hv
hv.extension('plotly')

An ItemTable is an ordered collection of key, value pairs. It can be used to directly visualize items in a tabular format where the items may be supplied as an OrderedDict or a list of (key,value) pairs. A standard Python dictionary can be easily visualized using a call to the .items() method, though the entries in such a dictionary are not kept in any particular order, and so you may wish to sort them before display. One typical usage for an ItemTable is to list parameter values or measurements associated with an adjacent Element.

hv.ItemTable([('Age', 10), ('Weight',15), ('Height','0.8 meters')])

For full documentation and the available style and plot options, use hv.help(hv.ItemTable).

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.

Download this notebook from GitHub (right-click to download).