@@ -770,7 +770,7 @@ def set_xlim(self, left=None, right=None, *, emit=True, auto=False,
770
770
view_margin = None , xmin = None , xmax = None ):
771
771
"""
772
772
Set 3D x limits.
773
- See `.Axes.set_xlim` for full documentation
773
+ See `~ .Axes.set_xlim` for full documentation
774
774
"""
775
775
return self ._set_lim3d (self .xaxis , left , right , emit = emit , auto = auto ,
776
776
view_margin = view_margin , axmin = xmin , axmax = xmax )
@@ -779,7 +779,7 @@ def set_ylim(self, bottom=None, top=None, *, emit=True, auto=False,
779
779
view_margin = None , ymin = None , ymax = None ):
780
780
"""
781
781
Set 3D y limits.
782
- See `.Axes.set_ylim` for full documentation
782
+ See `~ .Axes.set_ylim` for full documentation
783
783
"""
784
784
return self ._set_lim3d (self .yaxis , bottom , top , emit = emit , auto = auto ,
785
785
view_margin = view_margin , axmin = ymin , axmax = ymax )
@@ -788,8 +788,7 @@ def set_zlim(self, bottom=None, top=None, *, emit=True, auto=False,
788
788
view_margin = None , zmin = None , zmax = None ):
789
789
"""
790
790
Set 3D z limits.
791
-
792
- See `.Axes.set_ylim` for full documentation
791
+ See `~.Axes.set_ylim` for full documentation
793
792
"""
794
793
return self ._set_lim3d (self .zaxis , bottom , top , emit = emit , auto = auto ,
795
794
view_margin = view_margin , axmin = zmin , axmax = zmax )
@@ -2989,10 +2988,10 @@ def errorbar(self, x, y, z, zerr=None, yerr=None, xerr=None, fmt='',
2989
2988
lower limits. In that case a caret symbol is used to indicate
2990
2989
this. *lims*-arguments may be scalars, or array-likes of the same
2991
2990
length as the errors. To use limits with inverted axes,
2992
- `~.Axes.set_xlim` or `~.Axes.set_ylim` must be called before
2993
- `errorbar`. Note the tricky parameter names: setting e.g.
2994
- *ylolims* to True means that the y-value is a *lower* limit of the
2995
- True value, so, only an *upward*-pointing arrow will be drawn!
2991
+ `~.Axes.set_xlim`, `~.Axes.set_ylim`, or `~.Axes.set_ylim` must be
2992
+ called before `errorbar`. Note the tricky parameter names: setting
2993
+ e.g. *ylolims* to True means that the y-value is a *lower* limit of
2994
+ the True value, so, only an *upward*-pointing arrow will be drawn!
2996
2995
2997
2996
xuplims, yuplims, zuplims : bool, default: False
2998
2997
Same as above, but for controlling the upper limits.
0 commit comments