Hline

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


Title: HLine Element

Dependencies: Plotly

Backends: Bokeh, Matplotlib, Plotly

In [1]:
import numpy as np
import holoviews as hv
from holoviews import opts
hv.extension('plotly')

The HLine element is a type of annotation that marks a position along the y-axis. Here is an HLine element that marks the mean of a points distributions:

In [2]:
xs = np.random.normal(size=100)
ys = np.random.normal(size=100) * xs
overlay = hv.Points((xs,ys)) * hv.HLine(ys.mean())
overlay.opts(
    opts.HLine(line_color='blue', line_width=6), 
    opts.Points(color='gray'))
Out[2]:

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


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