Arrow#

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


Title
Arrow
Dependencies
Matplotlib
Backends
Bokeh
Matplotlib
import numpy as np
import holoviews as hv
hv.extension('matplotlib')

The Arrow element is a type of annotation that points to a position on a visualization with optional text. It allows specifying an x- and y-position along with a label and a direction which may be one of ‘<’, ‘>’, ‘v’ and ‘^’:

xs = np.linspace(-5,5,100)
ys = -(xs-2)**3

curve = hv.Curve((xs,ys))
arrow = hv.Arrow(0, 5, 'Inflection', 'v')

curve.opts(color='#D3D3D3') * arrow

Additionally we can pick between a number of different arrow styles including ‘-[’, ‘->’ and ‘<->’:

np.random.seed(12)
points = hv.Points(np.random.randn(100, 2))
(points * hv.Arrow(2, points['y'].min(), 'Min', 'v', arrowstyle='-[') *
hv.Arrow(2, points['y'].max(), 'Max', '^', arrowstyle='-[')).redim.range(y=(-5, 5), x=(-3, 3))

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

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