matplotlib.pyplot.hlines#

matplotlib.pyplot.hlines(y,xmin,xmax,colors=None,linestyles='solid',*,label='',data=None,**kwargs)[source]#

Plot horizontal lines at eachy fromxmin toxmax.

Parameters:
yfloat or array-like

y-indexes where to plot the lines.

xmin, xmaxfloat or array-like

Respective beginning and end of each line. If scalars areprovided, all lines will have the same length.

colorscolor or list of color , default:rcParams["lines.color"] (default:'C0')
linestyles{'solid', 'dashed', 'dashdot', 'dotted'}, default: 'solid'
labelstr, default: ''
Returns:
LineCollection
Other Parameters:
dataindexable object, optional

If given, the following parameters also accept a strings, which isinterpreted asdata[s] ifs is a key indata:

y,xmin,xmax,colors

**kwargsLineCollection properties.

See also

vlines

vertical lines

axhline

horizontal line across the Axes

Notes

Note

This is thepyplot wrapper foraxes.Axes.hlines.

On this page