Add a horizontal line across the axis.
y position in data coordinates of the horizontal line.
Should be between 0 and 1, 0 being the far left of the plot, 1 the far right of the plot.
Should be between 0 and 1, 0 being the far left of the plot, 1 the far right of the plot.
Valid keyword arguments are Line2D
properties, with the exception of 'transform':
Property | Description |
---|---|
a filter function, which takes a (m, n, 3) float array and a dpi value, and returns a (m, n, 3) array | |
scalar or None | |
bool | |
| bool |
bool | |
Patch or (Path, Transform) or None | |
| color |
| |
| |
sequence of floats (on/off ink in points) or (None, None) | |
(2, N) array or two 1D arrays | |
| {'default', 'steps', 'steps-pre', 'steps-mid', 'steps-post'}, default: 'default' |
{'full', 'left', 'right', 'bottom', 'top', 'none'} | |
str | |
bool | |
object | |
| {'-', '--', '-.', ':', '', (offset, on-off-seq), ...} |
| float |
marker style string, | |
| color |
| float |
| color |
| color |
| float |
None or int or (int, int) or slice or list[int] or float or (float, float) or list[bool] | |
float or callable[[Artist, Event], tuple[bool, dict]] | |
float | |
bool | |
(scale: float, length: float, randomness: float) | |
bool or None | |
| |
| |
unknown | |
str | |
bool | |
1D array | |
1D array | |
float |
See also
draw a thick red hline at 'y' = 0 that spans the xrange:
>>> axhline(linewidth=4, color='r')
draw a default hline at 'y' = 1 that spans the xrange:
>>> axhline(y=1)
draw a default hline at 'y' = .5 that spans the middle half of the xrange:
>>> axhline(y=.5, xmin=0.25, xmax=0.75)
matplotlib.axes.Axes.axhline
© 2012–2021 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/3.5.1/api/_as_gen/matplotlib.axes.Axes.axhline.html