@@ -705,7 +705,8 @@ def axhline(self, y=0, xmin=0, xmax=1, **kwargs):
705
705
706
706
See also
707
707
--------
708
- axhspan : for example plot and source code
708
+ hline : add horizontal lines in data coordinates
709
+ axhspan : add a horizontal span (rectangle) across the axis
709
710
"""
710
711
711
712
if "transform" in kwargs :
@@ -771,7 +772,8 @@ def axvline(self, x=0, ymin=0, ymax=1, **kwargs):
771
772
772
773
See also
773
774
--------
774
- axhspan : for example plot and source code
775
+ vline : add vertical lines in data coordinates
776
+ axvspan : add a vertical span (rectangle) across the axis
775
777
"""
776
778
777
779
if "transform" in kwargs :
@@ -830,8 +832,7 @@ def axhspan(self, ymin, ymax, xmin=0, xmax=1, **kwargs):
830
832
831
833
See Also
832
834
--------
833
- axvspan : Add a vertical span (rectangle) across the axes.
834
-
835
+ axvspan : add a vertical span across the axes
835
836
"""
836
837
trans = self .get_yaxis_transform (which = 'grid' )
837
838
@@ -888,7 +889,7 @@ def axvspan(self, xmin, xmax, ymin=0, ymax=1, **kwargs):
888
889
889
890
See Also
890
891
--------
891
- axhspan
892
+ axhspan : add a horizontal span across the axes
892
893
893
894
Examples
894
895
--------
@@ -947,7 +948,7 @@ def hlines(self, y, xmin, xmax, colors='k', linestyles='solid',
947
948
See also
948
949
--------
949
950
vlines : vertical lines
950
-
951
+ axhline: horizontal line across the axes
951
952
"""
952
953
953
954
# We do the conversion first since not all unitized data is uniform
@@ -1025,7 +1026,7 @@ def vlines(self, x, ymin, ymax, colors='k', linestyles='solid',
1025
1026
See also
1026
1027
--------
1027
1028
hlines : horizontal lines
1028
-
1029
+ axvline: vertical line across the axes
1029
1030
"""
1030
1031
1031
1032
self ._process_unit_info (xdata = x , ydata = [ymin , ymax ], kwargs = kwargs )
0 commit comments