@@ -424,7 +424,7 @@ def inset_axes(self, bounds, *, transform=None, zorder=5,
424
424
parent axes.
425
425
426
426
**kwargs
427
- Other *kwargs* are passed on to the `~.axes .Axes` child axes.
427
+ Other keyword arguments are passed on to the `.Axes` child axes.
428
428
429
429
Returns
430
430
-------
@@ -506,7 +506,7 @@ def indicate_inset(self, bounds, inset_ax=None, *, transform=None,
506
506
(just below the default level of inset axes).
507
507
508
508
**kwargs
509
- Other *kwargs* are passed on to the rectangle patch.
509
+ Other keyword arguments are passed on to the rectangle patch.
510
510
511
511
Returns
512
512
-------
@@ -592,7 +592,7 @@ def indicate_inset_zoom(self, inset_ax, **kwargs):
592
592
chosen so as to not overlap with the indicator box.
593
593
594
594
**kwargs
595
- Other *kwargs* are passed on to `.Axes.indicate_inset`
595
+ Other keyword arguments are passed on to `.Axes.indicate_inset`
596
596
597
597
Returns
598
598
-------
@@ -798,15 +798,15 @@ def axhline(self, y=0, xmin=0, xmax=1, **kwargs):
798
798
799
799
Returns
800
800
-------
801
- line : :class:`~matplotlib.lines. Line2D`
801
+ line : a `. Line2D` instance
802
802
803
803
Other Parameters
804
804
----------------
805
805
**kwargs
806
- Valid kwargs are :class:`~matplotlib.lines. Line2D` properties,
807
- with the exception of 'transform':
806
+ Valid keyword arguments are `. Line2D` properties, with the
807
+ exception of 'transform':
808
808
809
- %(_Line2D_docstr)s
809
+ %(_Line2D_docstr)s
810
810
811
811
See also
812
812
--------
@@ -866,15 +866,15 @@ def axvline(self, x=0, ymin=0, ymax=1, **kwargs):
866
866
867
867
Returns
868
868
-------
869
- line : :class:`~matplotlib.lines. Line2D`
869
+ line : a `. Line2D` instance
870
870
871
871
Other Parameters
872
872
----------------
873
873
**kwargs
874
- Valid kwargs are :class:`~matplotlib.lines. Line2D` properties,
875
- with the exception of 'transform':
874
+ Valid keyword arguments are `. Line2D` properties, with the
875
+ exception of 'transform':
876
876
877
- %(_Line2D_docstr)s
877
+ %(_Line2D_docstr)s
878
878
879
879
Examples
880
880
--------
@@ -1539,7 +1539,7 @@ def plot(self, *args, scalex=True, scaley=True, data=None, **kwargs):
1539
1539
1540
1540
Here is a list of available `.Line2D` properties:
1541
1541
1542
- %(_Line2D_docstr)s
1542
+ %(_Line2D_docstr)s
1543
1543
1544
1544
Returns
1545
1545
-------
@@ -1680,16 +1680,15 @@ def plot_date(self, x, y, fmt='o', tz=None, xdate=True, ydate=False,
1680
1680
Returns
1681
1681
-------
1682
1682
lines
1683
- A list of `~ .Line2D` objects representing the plotted data.
1683
+ A list of `.Line2D` objects representing the plotted data.
1684
1684
1685
1685
1686
1686
Other Parameters
1687
1687
----------------
1688
1688
**kwargs
1689
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
1690
- properties:
1689
+ Keyword arguments control the `.Line2D` properties:
1691
1690
1692
- %(_Line2D_docstr)s
1691
+ %(_Line2D_docstr)s
1693
1692
1694
1693
See Also
1695
1694
--------
@@ -1756,7 +1755,7 @@ def loglog(self, *args, **kwargs):
1756
1755
Returns
1757
1756
-------
1758
1757
lines
1759
- A list of `~ .Line2D` objects representing the plotted data.
1758
+ A list of `.Line2D` objects representing the plotted data.
1760
1759
1761
1760
Other Parameters
1762
1761
----------------
@@ -1809,7 +1808,7 @@ def semilogx(self, *args, **kwargs):
1809
1808
Returns
1810
1809
-------
1811
1810
lines
1812
- A list of `~ .Line2D` objects representing the plotted data.
1811
+ A list of `.Line2D` objects representing the plotted data.
1813
1812
1814
1813
Other Parameters
1815
1814
----------------
@@ -1858,7 +1857,7 @@ def semilogy(self, *args, **kwargs):
1858
1857
Returns
1859
1858
-------
1860
1859
lines
1861
- A list of `~ .Line2D` objects representing the plotted data.
1860
+ A list of `.Line2D` objects representing the plotted data.
1862
1861
1863
1862
Other Parameters
1864
1863
----------------
@@ -3143,10 +3142,8 @@ def errorbar(self, x, y, yerr=None, xerr=None,
3143
3142
container : :class:`~.container.ErrorbarContainer`
3144
3143
The container contains:
3145
3144
3146
- - plotline: :class:`~matplotlib.lines.Line2D` instance of
3147
- x, y plot markers and/or line.
3148
- - caplines: A tuple of :class:`~matplotlib.lines.Line2D` instances
3149
- of the error bar caps.
3145
+ - plotline: `.Line2D` instance of x, y plot markers and/or line.
3146
+ - caplines: A tuple of `.Line2D` instances of the error bar caps.
3150
3147
- barlinecols: A tuple of
3151
3148
:class:`~matplotlib.collections.LineCollection` with the
3152
3149
horizontal and vertical error ranges.
@@ -3168,7 +3165,7 @@ def errorbar(self, x, y, yerr=None, xerr=None,
3168
3165
3169
3166
Valid kwargs for the marker properties are `.Lines2D` properties:
3170
3167
3171
- %(_Line2D_docstr)s
3168
+ %(_Line2D_docstr)s
3172
3169
"""
3173
3170
kwargs = cbook .normalize_kwargs (kwargs , mlines .Line2D )
3174
3171
# anything that comes in as 'None', drop so the default thing
@@ -3616,9 +3613,8 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None,
3616
3613
-------
3617
3614
result : dict
3618
3615
A dictionary mapping each component of the boxplot to a list
3619
- of the :class:`matplotlib.lines.Line2D` instances
3620
- created. That dictionary has the following keys (assuming
3621
- vertical boxplots):
3616
+ of the `.Line2D` instances created. That dictionary has the
3617
+ following keys (assuming vertical boxplots):
3622
3618
3623
3619
- ``boxes``: the main body of the boxplot showing the
3624
3620
quartiles and the median's confidence intervals if
@@ -3816,9 +3812,8 @@ def bxp(self, bxpstats, positions=None, widths=None, vert=True,
3816
3812
makes horizontal boxes.
3817
3813
3818
3814
patch_artist : bool, default = False
3819
- If `False` produces boxes with the
3820
- `~matplotlib.lines.Line2D` artist. If `True` produces boxes
3821
- with the `~matplotlib.patches.Patch` artist.
3815
+ If `False` produces boxes with the `.Line2D` artist.
3816
+ If `True` produces boxes with the `~matplotlib.patches.Patch` artist.
3822
3817
3823
3818
shownotches : bool, default = False
3824
3819
If `False` (default), produces a rectangular box plot.
@@ -3871,9 +3866,8 @@ def bxp(self, bxpstats, positions=None, widths=None, vert=True,
3871
3866
-------
3872
3867
result : dict
3873
3868
A dictionary mapping each component of the boxplot to a list
3874
- of the :class:`matplotlib.lines.Line2D` instances
3875
- created. That dictionary has the following keys (assuming
3876
- vertical boxplots):
3869
+ of the `.Line2D` instances created. That dictionary has the
3870
+ following keys (assuming vertical boxplots):
3877
3871
3878
3872
- ``boxes``: the main body of the boxplot showing the
3879
3873
quartiles and the median's confidence intervals if
@@ -7002,17 +6996,16 @@ def psd(self, x, NFFT=None, Fs=None, Fc=None, detrend=None,
7002
6996
freqs : 1-D array
7003
6997
The frequencies corresponding to the elements in *Pxx*.
7004
6998
7005
- line : a :class:`~matplotlib.lines .Line2D` instance
6999
+ line : a ` .Line2D` instance
7006
7000
The line created by this function.
7007
7001
Only returned if *return_line* is True.
7008
7002
7009
7003
Other Parameters
7010
7004
----------------
7011
7005
**kwargs
7012
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
7013
- properties:
7006
+ Keyword arguments control the `.Line2D` properties:
7014
7007
7015
- %(_Line2D_docstr)s
7008
+ %(_Line2D_docstr)s
7016
7009
7017
7010
See Also
7018
7011
--------
@@ -7121,17 +7114,16 @@ def csd(self, x, y, NFFT=None, Fs=None, Fc=None, detrend=None,
7121
7114
freqs : 1-D array
7122
7115
The frequencies corresponding to the elements in *Pxy*.
7123
7116
7124
- line : a :class:`~matplotlib.lines .Line2D` instance
7117
+ line : a ` .Line2D` instance
7125
7118
The line created by this function.
7126
7119
Only returned if *return_line* is True.
7127
7120
7128
7121
Other Parameters
7129
7122
----------------
7130
7123
**kwargs
7131
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
7132
- properties:
7124
+ Keyword arguments control the `.Line2D` properties:
7133
7125
7134
- %(_Line2D_docstr)s
7126
+ %(_Line2D_docstr)s
7135
7127
7136
7128
See Also
7137
7129
--------
@@ -7215,16 +7207,15 @@ def magnitude_spectrum(self, x, Fs=None, Fc=None, window=None,
7215
7207
freqs : 1-D array
7216
7208
The frequencies corresponding to the elements in *spectrum*.
7217
7209
7218
- line : a :class:`~matplotlib.lines .Line2D` instance
7210
+ line : a ` .Line2D` instance
7219
7211
The line created by this function.
7220
7212
7221
7213
Other Parameters
7222
7214
----------------
7223
7215
**kwargs
7224
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
7225
- properties:
7216
+ Keyword arguments control the `.Line2D` properties:
7226
7217
7227
- %(_Line2D_docstr)s
7218
+ %(_Line2D_docstr)s
7228
7219
7229
7220
See Also
7230
7221
--------
@@ -7303,16 +7294,15 @@ def angle_spectrum(self, x, Fs=None, Fc=None, window=None,
7303
7294
freqs : 1-D array
7304
7295
The frequencies corresponding to the elements in *spectrum*.
7305
7296
7306
- line : a :class:`~matplotlib.lines .Line2D` instance
7297
+ line : a ` .Line2D` instance
7307
7298
The line created by this function.
7308
7299
7309
7300
Other Parameters
7310
7301
----------------
7311
7302
**kwargs
7312
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
7313
- properties:
7303
+ Keyword arguments control the `.Line2D` properties:
7314
7304
7315
- %(_Line2D_docstr)s
7305
+ %(_Line2D_docstr)s
7316
7306
7317
7307
See Also
7318
7308
--------
@@ -7376,16 +7366,15 @@ def phase_spectrum(self, x, Fs=None, Fc=None, window=None,
7376
7366
freqs : 1-D array
7377
7367
The frequencies corresponding to the elements in *spectrum*.
7378
7368
7379
- line : a :class:`~matplotlib.lines .Line2D` instance
7369
+ line : a ` .Line2D` instance
7380
7370
The line created by this function.
7381
7371
7382
7372
Other Parameters
7383
7373
----------------
7384
7374
**kwargs
7385
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
7386
- properties:
7375
+ Keyword arguments control the `.Line2D` properties:
7387
7376
7388
- %(_Line2D_docstr)s
7377
+ %(_Line2D_docstr)s
7389
7378
7390
7379
See Also
7391
7380
--------
@@ -7457,10 +7446,9 @@ def cohere(self, x, y, NFFT=256, Fs=2, Fc=0, detrend=mlab.detrend_none,
7457
7446
Other Parameters
7458
7447
----------------
7459
7448
**kwargs
7460
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
7461
- properties:
7449
+ Keyword arguments control the `.Line2D` properties:
7462
7450
7463
- %(_Line2D_docstr)s
7451
+ %(_Line2D_docstr)s
7464
7452
7465
7453
References
7466
7454
----------
@@ -7540,8 +7528,8 @@ def specgram(self, x, NFFT=None, Fs=None, Fc=None, detrend=None,
7540
7528
of the bins is smaller than those of the segments.
7541
7529
7542
7530
**kwargs
7543
- Additional kwargs are passed on to imshow which makes the
7544
- specgram image.
7531
+ Additional keyword arguments are passed on to imshow which makes
7532
+ the specgram image.
7545
7533
7546
7534
Returns
7547
7535
-------
@@ -7647,14 +7635,14 @@ def spy(self, Z, precision=0, marker=None, markersize=None,
7647
7635
**Image style**
7648
7636
7649
7637
If *marker* and *markersize* are *None*, `~.Axes.imshow` is used. Any
7650
- extra remaining kwargs are passed to this method.
7638
+ extra remaining keyword arguments are passed to this method.
7651
7639
7652
7640
**Marker style**
7653
7641
7654
7642
If *Z* is a `scipy.sparse.spmatrix` or *marker* or *markersize* are
7655
- *None*, a `~matplotlib.lines. Line2D` object will be returned with
7656
- the value of marker determining the marker type, and any
7657
- remaining kwargs passed to `~.Axes.plot`.
7643
+ *None*, a `. Line2D` object will be returned with the value of marker
7644
+ determining the marker type, and any remaining keyword arguments
7645
+ passed to `~.Axes.plot`.
7658
7646
7659
7647
Parameters
7660
7648
----------
@@ -7713,7 +7701,7 @@ def spy(self, Z, precision=0, marker=None, markersize=None,
7713
7701
For the marker style, you can pass any `.Line2D` property except
7714
7702
for *linestyle*:
7715
7703
7716
- %(_Line2D_docstr)s
7704
+ %(_Line2D_docstr)s
7717
7705
"""
7718
7706
if marker is None and markersize is None and hasattr (Z , 'tocoo' ):
7719
7707
marker = 's'
0 commit comments