Violin#

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


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

A Violin element is used to visualise the distribution of a dataset by displaying its probability density. It is very similar to the BoxWhisker element but provides a more faithful representation even for bi- or multimodal data. The probability density is shown by the area akin to a vertical and mirrored Distribution element. The thick black bar in the centre represents the interquartile range, the thin black line extended from it represents the 95% confidence intervals, and the white dot is the median.

The data of a Violin Element may have any number of key dimensions representing the grouping of the value dimension and a single value dimensions representing the distribution of values within each group. See the Tabular Datasets user guide for supported data formats, which include arrays, pandas dataframes and dictionaries of arrays.

In the simplest case a Violin can be used to display a single distribution of values, such as a NumPy array of normally distributed values:

np.random.seed(37)
violin = hv.Violin(np.random.randn(100), vdims='Value')
violin

The Violin element is particularly useful to compare multiple distribution across different categories. As a simple example we can create a dataset of values with randomly assigned Group and Category values and compare the distributions.

groups = [chr(65+g) for g in np.random.randint(0, 3, 200)]
violin = hv.Violin((groups, np.random.randint(0, 5, 200), np.random.randn(200)),
                   ['Group', 'Category'], 'Value')

violin.opts(height=400, width=600)

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

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).