matplotlib.pyplot.vlines#
- matplotlib.pyplot.vlines(x,ymin,ymax,colors=None,linestyles='solid',*,label='',data=None,**kwargs)[source]#
Plot vertical lines at eachx fromymin toymax.
- Parameters:
- xfloat or array-like
x-indexes where to plot the lines.
- ymin, ymaxfloat 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:
- Other Parameters:
- dataindexable object, optional
If given, the following parameters also accept a string
s
, which isinterpreted asdata[s]
ifs
is a key indata
:x,ymin,ymax,colors
- **kwargs
LineCollection
properties.
Notes
Note
This is thepyplot wrapper for
axes.Axes.vlines
.
Examples usingmatplotlib.pyplot.vlines
#
On this page