@@ -344,7 +344,7 @@ def legend(self, *args, **kwargs):
344344 Parameters
345345 ----------
346346
347- handles : sequence of `~ .Artist`, optional
347+ handles : sequence of `.Artist`, optional
348348 A list of Artists (lines, patches) to be added to the legend.
349349 Use this together with *labels*, if you need full control on what
350350 is shown in the legend and the automatic mechanism described above
@@ -386,7 +386,7 @@ def legend(self, *args, **kwargs):
386386 corner of the legend in axes coordinates (in which case
387387 ``bbox_to_anchor`` will be ignored).
388388
389- bbox_to_anchor : `~ .BboxBase` or pair of floats
389+ bbox_to_anchor : `.BboxBase` or pair of floats
390390 Specify any arbitrary location for the legend in `bbox_transform`
391391 coordinates (default Axes coordinates).
392392
@@ -411,13 +411,13 @@ def legend(self, *args, **kwargs):
411411
412412 numpoints : None or int
413413 The number of marker points in the legend when creating a legend
414- entry for a `~ .Line2D` (line).
414+ entry for a `.Line2D` (line).
415415 Default is ``None``, which will take the value from
416416 :rc:`legend.numpoints`.
417417
418418 scatterpoints : None or int
419419 The number of marker points in the legend when creating
420- a legend entry for a `~ .PathCollection` (scatter plot).
420+ a legend entry for a `.PathCollection` (scatter plot).
421421 Default is ``None``, which will take the value from
422422 :rc:`legend.scatterpoints`.
423423
@@ -1305,7 +1305,7 @@ def plot(self, *args, **kwargs):
13051305 >>> plot(y) # plot y using x as index array 0..N-1
13061306 >>> plot(y, 'r+') # ditto, but with red plusses
13071307
1308- You can use `~ .Line2D` properties as keyword arguments for more
1308+ You can use `.Line2D` properties as keyword arguments for more
13091309 control on the appearance. Line properties and *fmt* can be mixed.
13101310 The following two calls yield identical results:
13111311
@@ -1403,7 +1403,7 @@ def plot(self, *args, **kwargs):
14031403 These parameters determined if the view limits are adapted to
14041404 the data limits. The values are passed on to `autoscale_view`.
14051405
1406- **kwargs : `~ .Line2D` properties, optional
1406+ **kwargs : `.Line2D` properties, optional
14071407 *kwargs* are used to specify properties like a line label (for
14081408 auto legends), linewidth, antialiasing, marker face color.
14091409 Example::
@@ -1414,14 +1414,14 @@ def plot(self, *args, **kwargs):
14141414 If you make multiple lines with one plot command, the kwargs
14151415 apply to all those lines.
14161416
1417- Here is a list of available `~ .Line2D` properties:
1417+ Here is a list of available `.Line2D` properties:
14181418
14191419 %(Line2D)s
14201420
14211421 Returns
14221422 -------
14231423 lines
1424- A list of `~ .Line2D` objects that were added.
1424+ A list of `.Line2D` objects that were added.
14251425
14261426
14271427 See Also
@@ -1800,12 +1800,12 @@ def acorr(self, x, **kwargs):
18001800 lag vector.
18011801 c : array (length ``2*maxlags+1``)
18021802 auto correlation vector.
1803- line : `~ .LineCollection` or `~ .Line2D`
1804- `~ .Artist` added to the axes of the correlation.
1803+ line : `.LineCollection` or `.Line2D`
1804+ `.Artist` added to the axes of the correlation.
18051805
1806- `~ .LineCollection` if *usevlines* is True
1807- `~ .Line2D` if *usevlines* is False
1808- b : `~ .Line2D` or None
1806+ `.LineCollection` if *usevlines* is True
1807+ `.Line2D` if *usevlines* is False
1808+ b : `.Line2D` or None
18091809 Horizontal line at 0 if *usevlines* is True
18101810 None *usevlines* is False
18111811
@@ -1862,12 +1862,12 @@ def xcorr(self, x, y, normed=True, detrend=mlab.detrend_none,
18621862 lag vector.
18631863 c : array (length ``2*maxlags+1``)
18641864 auto correlation vector.
1865- line : `~ .LineCollection` or `~ .Line2D`
1866- `~ .Artist` added to the axes of the correlation
1865+ line : `.LineCollection` or `.Line2D`
1866+ `.Artist` added to the axes of the correlation
18671867
1868- `~ .LineCollection` if *usevlines* is True
1869- `~ .Line2D` if *usevlines* is False
1870- b : `~ .Line2D` or None
1868+ `.LineCollection` if *usevlines* is True
1869+ `.Line2D` if *usevlines* is False
1870+ b : `.Line2D` or None
18711871 Horizontal line at 0 if *usevlines* is True
18721872 None *usevlines* is False
18731873
@@ -2049,7 +2049,7 @@ def bar(self, *args, **kwargs):
20492049
20502050 Returns
20512051 -------
2052- `~ .BarContainer`
2052+ `.BarContainer`
20532053 Container with all the bars and optionally errorbars.
20542054
20552055 Other Parameters
@@ -2367,7 +2367,7 @@ def barh(self, *args, **kwargs):
23672367
23682368 Returns
23692369 -------
2370- `~ .BarContainer`
2370+ `.BarContainer`
23712371 Container with all the bars and optionally errorbars.
23722372
23732373 Other Parameters
@@ -2485,7 +2485,7 @@ def broken_barh(self, xranges, yrange, **kwargs):
24852485
24862486 Other Parameters
24872487 ----------------
2488- **kwargs : :class:`~ .BrokenBarHCollection` properties
2488+ **kwargs : :class:`.BrokenBarHCollection` properties
24892489
24902490 Each *kwarg* can be either a single argument applying to all
24912491 rectangles, e.g.::
@@ -2979,7 +2979,7 @@ def errorbar(self, x, y, yerr=None, xerr=None,
29792979 - *None*: No errorbar.
29802980
29812981 fmt : plot format string, optional, default: ''
2982- The format for the data points / data lines. See `~ .plot` for
2982+ The format for the data points / data lines. See `.plot` for
29832983 details.
29842984
29852985 Use 'none' (case insensitive) to plot errorbars without any data
@@ -3049,7 +3049,7 @@ def errorbar(self, x, y, yerr=None, xerr=None,
30493049 property names, *markerfacecolor*, *markeredgecolor*, *markersize*
30503050 and *markeredgewidth*.
30513051
3052- Valid kwargs for the marker properties are `~ .Lines2D` properties:
3052+ Valid kwargs for the marker properties are `.Lines2D` properties:
30533053
30543054 %(Line2D)s
30553055
@@ -4103,7 +4103,7 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
41034103 ``image.cmap``.
41044104
41054105 norm : `~matplotlib.colors.Normalize`, optional, default: None
4106- A `~ .Normalize` instance is used to scale luminance data to 0, 1.
4106+ A `.Normalize` instance is used to scale luminance data to 0, 1.
41074107 *norm* is only used if *c* is an array of floats. If *None*, use
41084108 the default `.colors.Normalize`.
41094109
@@ -5027,15 +5027,15 @@ def fill_between(self, x, y1, y2=0, where=None, interpolate=False,
50275027 Other Parameters
50285028 ----------------
50295029 **kwargs
5030- All other keyword arguments are passed on to `~ .PolyCollection`.
5031- They control the `~ .Polygon` properties:
5030+ All other keyword arguments are passed on to `.PolyCollection`.
5031+ They control the `.Polygon` properties:
50325032
50335033 %(PolyCollection)s
50345034
50355035 Returns
50365036 -------
5037- `~ .PolyCollection`
5038- A `~ .PolyCollection` containing the plotted polygons.
5037+ `.PolyCollection`
5038+ A `.PolyCollection` containing the plotted polygons.
50395039
50405040 See Also
50415041 --------
@@ -5211,15 +5211,15 @@ def fill_betweenx(self, y, x1, x2=0, where=None,
52115211 Other Parameters
52125212 ----------------
52135213 **kwargs
5214- All other keyword arguments are passed on to `~ .PolyCollection`.
5215- They control the `~ .Polygon` properties:
5214+ All other keyword arguments are passed on to `.PolyCollection`.
5215+ They control the `.Polygon` properties:
52165216
52175217 %(PolyCollection)s
52185218
52195219 Returns
52205220 -------
5221- `~ .PolyCollection`
5222- A `~ .PolyCollection` containing the plotted polygons.
5221+ `.PolyCollection`
5222+ A `.PolyCollection` containing the plotted polygons.
52235223
52245224 See Also
52255225 --------
0 commit comments