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