Add a vertical line spanning the whole or fraction of the Axes.
Note: If you want to set y-limits in data coordinates, use vlines
instead.
x position in data coordinates.
The start y-position in axes coordinates. Should be between 0 and 1, 0 being the bottom of the plot, 1 the top of the plot.
The end y-position in axes coordinates. Should be between 0 and 1, 0 being the bottom of the plot, 1 the top of the plot.
Line2D
A Line2D
specified via two points (x, ymin)
, (x, ymax)
. Its transform is set such that x is in data coordinates and y is in axes coordinates.
This is still a generic line and the vertical character is only realized through using identical x values for both points. Thus, if you want to change the x value later, you have to provide two values line.set_xdata([3, 3])
.
Valid keyword arguments are Line2D
properties, except for 'transform':
See also
vlines
Add vertical lines in data coordinates.
axvspan
Add a vertical span (rectangle) across the axis.
axline
Add a line with an arbitrary slope.
Notes
Examples
draw a thick red vline at x = 0 that spans the yrange:
>>> axvline(linewidth=4, color='r')
draw a default vline at x = 1 that spans the yrange:
draw a default vline at x = .5 that spans the middle half of the yrange:
>>> axvline(x=.5, ymin=0.25, ymax=0.75)
matplotlib.pyplot.axvline
#
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4