@@ -345,7 +345,7 @@ def legend(self, *args, **kwargs):
345
345
Parameters
346
346
----------
347
347
348
- handles : sequence of `~ .Artist`, optional
348
+ handles : sequence of `.Artist`, optional
349
349
A list of Artists (lines, patches) to be added to the legend.
350
350
Use this together with *labels*, if you need full control on what
351
351
is shown in the legend and the automatic mechanism described above
@@ -387,7 +387,7 @@ def legend(self, *args, **kwargs):
387
387
corner of the legend in axes coordinates (in which case
388
388
``bbox_to_anchor`` will be ignored).
389
389
390
- bbox_to_anchor : `~ .BboxBase` or pair of floats
390
+ bbox_to_anchor : `.BboxBase` or pair of floats
391
391
Specify any arbitrary location for the legend in `bbox_transform`
392
392
coordinates (default Axes coordinates).
393
393
@@ -412,13 +412,13 @@ def legend(self, *args, **kwargs):
412
412
413
413
numpoints : None or int
414
414
The number of marker points in the legend when creating a legend
415
- entry for a `~ .Line2D` (line).
415
+ entry for a `.Line2D` (line).
416
416
Default is ``None``, which will take the value from
417
417
:rc:`legend.numpoints`.
418
418
419
419
scatterpoints : None or int
420
420
The number of marker points in the legend when creating
421
- a legend entry for a `~ .PathCollection` (scatter plot).
421
+ a legend entry for a `.PathCollection` (scatter plot).
422
422
Default is ``None``, which will take the value from
423
423
:rc:`legend.scatterpoints`.
424
424
@@ -1306,7 +1306,7 @@ def plot(self, *args, **kwargs):
1306
1306
>>> plot(y) # plot y using x as index array 0..N-1
1307
1307
>>> plot(y, 'r+') # ditto, but with red plusses
1308
1308
1309
- You can use `~ .Line2D` properties as keyword arguments for more
1309
+ You can use `.Line2D` properties as keyword arguments for more
1310
1310
control on the appearance. Line properties and *fmt* can be mixed.
1311
1311
The following two calls yield identical results:
1312
1312
@@ -1404,7 +1404,7 @@ def plot(self, *args, **kwargs):
1404
1404
These parameters determined if the view limits are adapted to
1405
1405
the data limits. The values are passed on to `autoscale_view`.
1406
1406
1407
- **kwargs : `~ .Line2D` properties, optional
1407
+ **kwargs : `.Line2D` properties, optional
1408
1408
*kwargs* are used to specify properties like a line label (for
1409
1409
auto legends), linewidth, antialiasing, marker face color.
1410
1410
Example::
@@ -1415,14 +1415,14 @@ def plot(self, *args, **kwargs):
1415
1415
If you make multiple lines with one plot command, the kwargs
1416
1416
apply to all those lines.
1417
1417
1418
- Here is a list of available `~ .Line2D` properties:
1418
+ Here is a list of available `.Line2D` properties:
1419
1419
1420
1420
%(Line2D)s
1421
1421
1422
1422
Returns
1423
1423
-------
1424
1424
lines
1425
- A list of `~ .Line2D` objects that were added.
1425
+ A list of `.Line2D` objects that were added.
1426
1426
1427
1427
1428
1428
See Also
@@ -1801,12 +1801,12 @@ def acorr(self, x, **kwargs):
1801
1801
lag vector.
1802
1802
c : array (length ``2*maxlags+1``)
1803
1803
auto correlation vector.
1804
- line : `~ .LineCollection` or `~ .Line2D`
1805
- `~ .Artist` added to the axes of the correlation.
1804
+ line : `.LineCollection` or `.Line2D`
1805
+ `.Artist` added to the axes of the correlation.
1806
1806
1807
- `~ .LineCollection` if *usevlines* is True
1808
- `~ .Line2D` if *usevlines* is False
1809
- b : `~ .Line2D` or None
1807
+ `.LineCollection` if *usevlines* is True
1808
+ `.Line2D` if *usevlines* is False
1809
+ b : `.Line2D` or None
1810
1810
Horizontal line at 0 if *usevlines* is True
1811
1811
None *usevlines* is False
1812
1812
@@ -1863,12 +1863,12 @@ def xcorr(self, x, y, normed=True, detrend=mlab.detrend_none,
1863
1863
lag vector.
1864
1864
c : array (length ``2*maxlags+1``)
1865
1865
auto correlation vector.
1866
- line : `~ .LineCollection` or `~ .Line2D`
1867
- `~ .Artist` added to the axes of the correlation
1866
+ line : `.LineCollection` or `.Line2D`
1867
+ `.Artist` added to the axes of the correlation
1868
1868
1869
- `~ .LineCollection` if *usevlines* is True
1870
- `~ .Line2D` if *usevlines* is False
1871
- b : `~ .Line2D` or None
1869
+ `.LineCollection` if *usevlines* is True
1870
+ `.Line2D` if *usevlines* is False
1871
+ b : `.Line2D` or None
1872
1872
Horizontal line at 0 if *usevlines* is True
1873
1873
None *usevlines* is False
1874
1874
@@ -2050,7 +2050,7 @@ def bar(self, *args, **kwargs):
2050
2050
2051
2051
Returns
2052
2052
-------
2053
- `~ .BarContainer`
2053
+ `.BarContainer`
2054
2054
Container with all the bars and optionally errorbars.
2055
2055
2056
2056
Other Parameters
@@ -2368,7 +2368,7 @@ def barh(self, *args, **kwargs):
2368
2368
2369
2369
Returns
2370
2370
-------
2371
- `~ .BarContainer`
2371
+ `.BarContainer`
2372
2372
Container with all the bars and optionally errorbars.
2373
2373
2374
2374
Other Parameters
@@ -2486,7 +2486,7 @@ def broken_barh(self, xranges, yrange, **kwargs):
2486
2486
2487
2487
Other Parameters
2488
2488
----------------
2489
- **kwargs : :class:`~ .BrokenBarHCollection` properties
2489
+ **kwargs : :class:`.BrokenBarHCollection` properties
2490
2490
2491
2491
Each *kwarg* can be either a single argument applying to all
2492
2492
rectangles, e.g.::
@@ -2980,7 +2980,7 @@ def errorbar(self, x, y, yerr=None, xerr=None,
2980
2980
- *None*: No errorbar.
2981
2981
2982
2982
fmt : plot format string, optional, default: ''
2983
- The format for the data points / data lines. See `~ .plot` for
2983
+ The format for the data points / data lines. See `.plot` for
2984
2984
details.
2985
2985
2986
2986
Use 'none' (case insensitive) to plot errorbars without any data
@@ -3050,7 +3050,7 @@ def errorbar(self, x, y, yerr=None, xerr=None,
3050
3050
property names, *markerfacecolor*, *markeredgecolor*, *markersize*
3051
3051
and *markeredgewidth*.
3052
3052
3053
- Valid kwargs for the marker properties are `~ .Lines2D` properties:
3053
+ Valid kwargs for the marker properties are `.Lines2D` properties:
3054
3054
3055
3055
%(Line2D)s
3056
3056
@@ -4104,7 +4104,7 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
4104
4104
``image.cmap``.
4105
4105
4106
4106
norm : `~matplotlib.colors.Normalize`, optional, default: None
4107
- A `~ .Normalize` instance is used to scale luminance data to 0, 1.
4107
+ A `.Normalize` instance is used to scale luminance data to 0, 1.
4108
4108
*norm* is only used if *c* is an array of floats. If *None*, use
4109
4109
the default `.colors.Normalize`.
4110
4110
@@ -5028,15 +5028,15 @@ def fill_between(self, x, y1, y2=0, where=None, interpolate=False,
5028
5028
Other Parameters
5029
5029
----------------
5030
5030
**kwargs
5031
- All other keyword arguments are passed on to `~ .PolyCollection`.
5032
- They control the `~ .Polygon` properties:
5031
+ All other keyword arguments are passed on to `.PolyCollection`.
5032
+ They control the `.Polygon` properties:
5033
5033
5034
5034
%(PolyCollection)s
5035
5035
5036
5036
Returns
5037
5037
-------
5038
- `~ .PolyCollection`
5039
- A `~ .PolyCollection` containing the plotted polygons.
5038
+ `.PolyCollection`
5039
+ A `.PolyCollection` containing the plotted polygons.
5040
5040
5041
5041
See Also
5042
5042
--------
@@ -5212,15 +5212,15 @@ def fill_betweenx(self, y, x1, x2=0, where=None,
5212
5212
Other Parameters
5213
5213
----------------
5214
5214
**kwargs
5215
- All other keyword arguments are passed on to `~ .PolyCollection`.
5216
- They control the `~ .Polygon` properties:
5215
+ All other keyword arguments are passed on to `.PolyCollection`.
5216
+ They control the `.Polygon` properties:
5217
5217
5218
5218
%(PolyCollection)s
5219
5219
5220
5220
Returns
5221
5221
-------
5222
- `~ .PolyCollection`
5223
- A `~ .PolyCollection` containing the plotted polygons.
5222
+ `.PolyCollection`
5223
+ A `.PolyCollection` containing the plotted polygons.
5224
5224
5225
5225
See Also
5226
5226
--------
0 commit comments