@@ -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
-------
@@ -593,7 +593,7 @@ def indicate_inset_zoom(self, inset_ax, **kwargs):
593
593
chosen so as to not overlap with the indicator box.
594
594
595
595
**kwargs
596
- Other *kwargs* are passed on to `.Axes.indicate_inset`
596
+ Other keyword arguments are passed on to `.Axes.indicate_inset`
597
597
598
598
Returns
599
599
-------
@@ -804,15 +804,15 @@ def axhline(self, y=0, xmin=0, xmax=1, **kwargs):
804
804
805
805
Returns
806
806
-------
807
- line : :class:`~matplotlib.lines. Line2D`
807
+ line : a `. Line2D` instance
808
808
809
809
Other Parameters
810
810
----------------
811
811
**kwargs
812
- Valid kwargs are :class:`~matplotlib.lines. Line2D` properties,
813
- with the exception of 'transform':
812
+ Valid keyword arguments are `. Line2D` properties, with the
813
+ exception of 'transform':
814
814
815
- %(_Line2D_docstr)s
815
+ %(_Line2D_docstr)s
816
816
817
817
See also
818
818
--------
@@ -872,15 +872,15 @@ def axvline(self, x=0, ymin=0, ymax=1, **kwargs):
872
872
873
873
Returns
874
874
-------
875
- line : :class:`~matplotlib.lines. Line2D`
875
+ line : a `. Line2D` instance
876
876
877
877
Other Parameters
878
878
----------------
879
879
**kwargs
880
- Valid kwargs are :class:`~matplotlib.lines. Line2D` properties,
881
- with the exception of 'transform':
880
+ Valid keyword arguments are `. Line2D` properties, with the
881
+ exception of 'transform':
882
882
883
- %(_Line2D_docstr)s
883
+ %(_Line2D_docstr)s
884
884
885
885
Examples
886
886
--------
@@ -1545,7 +1545,7 @@ def plot(self, *args, scalex=True, scaley=True, data=None, **kwargs):
1545
1545
1546
1546
Here is a list of available `.Line2D` properties:
1547
1547
1548
- %(_Line2D_docstr)s
1548
+ %(_Line2D_docstr)s
1549
1549
1550
1550
Returns
1551
1551
-------
@@ -1686,16 +1686,15 @@ def plot_date(self, x, y, fmt='o', tz=None, xdate=True, ydate=False,
1686
1686
Returns
1687
1687
-------
1688
1688
lines
1689
- A list of `~ .Line2D` objects representing the plotted data.
1689
+ A list of `.Line2D` objects representing the plotted data.
1690
1690
1691
1691
1692
1692
Other Parameters
1693
1693
----------------
1694
1694
**kwargs
1695
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
1696
- properties:
1695
+ Keyword arguments control the `.Line2D` properties:
1697
1696
1698
- %(_Line2D_docstr)s
1697
+ %(_Line2D_docstr)s
1699
1698
1700
1699
See Also
1701
1700
--------
@@ -1762,7 +1761,7 @@ def loglog(self, *args, **kwargs):
1762
1761
Returns
1763
1762
-------
1764
1763
lines
1765
- A list of `~ .Line2D` objects representing the plotted data.
1764
+ A list of `.Line2D` objects representing the plotted data.
1766
1765
1767
1766
Other Parameters
1768
1767
----------------
@@ -1815,7 +1814,7 @@ def semilogx(self, *args, **kwargs):
1815
1814
Returns
1816
1815
-------
1817
1816
lines
1818
- A list of `~ .Line2D` objects representing the plotted data.
1817
+ A list of `.Line2D` objects representing the plotted data.
1819
1818
1820
1819
Other Parameters
1821
1820
----------------
@@ -1864,7 +1863,7 @@ def semilogy(self, *args, **kwargs):
1864
1863
Returns
1865
1864
-------
1866
1865
lines
1867
- A list of `~ .Line2D` objects representing the plotted data.
1866
+ A list of `.Line2D` objects representing the plotted data.
1868
1867
1869
1868
Other Parameters
1870
1869
----------------
@@ -3149,10 +3148,8 @@ def errorbar(self, x, y, yerr=None, xerr=None,
3149
3148
container : :class:`~.container.ErrorbarContainer`
3150
3149
The container contains:
3151
3150
3152
- - plotline: :class:`~matplotlib.lines.Line2D` instance of
3153
- x, y plot markers and/or line.
3154
- - caplines: A tuple of :class:`~matplotlib.lines.Line2D` instances
3155
- of the error bar caps.
3151
+ - plotline: `.Line2D` instance of x, y plot markers and/or line.
3152
+ - caplines: A tuple of `.Line2D` instances of the error bar caps.
3156
3153
- barlinecols: A tuple of
3157
3154
:class:`~matplotlib.collections.LineCollection` with the
3158
3155
horizontal and vertical error ranges.
@@ -3174,7 +3171,7 @@ def errorbar(self, x, y, yerr=None, xerr=None,
3174
3171
3175
3172
Valid kwargs for the marker properties are `.Lines2D` properties:
3176
3173
3177
- %(_Line2D_docstr)s
3174
+ %(_Line2D_docstr)s
3178
3175
"""
3179
3176
kwargs = cbook .normalize_kwargs (kwargs , mlines .Line2D )
3180
3177
# anything that comes in as 'None', drop so the default thing
@@ -3622,9 +3619,8 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None,
3622
3619
-------
3623
3620
result : dict
3624
3621
A dictionary mapping each component of the boxplot to a list
3625
- of the :class:`matplotlib.lines.Line2D` instances
3626
- created. That dictionary has the following keys (assuming
3627
- vertical boxplots):
3622
+ of the `.Line2D` instances created. That dictionary has the
3623
+ following keys (assuming vertical boxplots):
3628
3624
3629
3625
- ``boxes``: the main body of the boxplot showing the
3630
3626
quartiles and the median's confidence intervals if
@@ -3822,9 +3818,8 @@ def bxp(self, bxpstats, positions=None, widths=None, vert=True,
3822
3818
makes horizontal boxes.
3823
3819
3824
3820
patch_artist : bool, default = False
3825
- If `False` produces boxes with the
3826
- `~matplotlib.lines.Line2D` artist. If `True` produces boxes
3827
- with the `~matplotlib.patches.Patch` artist.
3821
+ If `False` produces boxes with the `.Line2D` artist.
3822
+ If `True` produces boxes with the `~matplotlib.patches.Patch` artist.
3828
3823
3829
3824
shownotches : bool, default = False
3830
3825
If `False` (default), produces a rectangular box plot.
@@ -3877,9 +3872,8 @@ def bxp(self, bxpstats, positions=None, widths=None, vert=True,
3877
3872
-------
3878
3873
result : dict
3879
3874
A dictionary mapping each component of the boxplot to a list
3880
- of the :class:`matplotlib.lines.Line2D` instances
3881
- created. That dictionary has the following keys (assuming
3882
- vertical boxplots):
3875
+ of the `.Line2D` instances created. That dictionary has the
3876
+ following keys (assuming vertical boxplots):
3883
3877
3884
3878
- ``boxes``: the main body of the boxplot showing the
3885
3879
quartiles and the median's confidence intervals if
@@ -7008,17 +7002,16 @@ def psd(self, x, NFFT=None, Fs=None, Fc=None, detrend=None,
7008
7002
freqs : 1-D array
7009
7003
The frequencies corresponding to the elements in *Pxx*.
7010
7004
7011
- line : a :class:`~matplotlib.lines .Line2D` instance
7005
+ line : a ` .Line2D` instance
7012
7006
The line created by this function.
7013
7007
Only returned if *return_line* is True.
7014
7008
7015
7009
Other Parameters
7016
7010
----------------
7017
7011
**kwargs
7018
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
7019
- properties:
7012
+ Keyword arguments control the `.Line2D` properties:
7020
7013
7021
- %(_Line2D_docstr)s
7014
+ %(_Line2D_docstr)s
7022
7015
7023
7016
See Also
7024
7017
--------
@@ -7127,17 +7120,16 @@ def csd(self, x, y, NFFT=None, Fs=None, Fc=None, detrend=None,
7127
7120
freqs : 1-D array
7128
7121
The frequencies corresponding to the elements in *Pxy*.
7129
7122
7130
- line : a :class:`~matplotlib.lines .Line2D` instance
7123
+ line : a ` .Line2D` instance
7131
7124
The line created by this function.
7132
7125
Only returned if *return_line* is True.
7133
7126
7134
7127
Other Parameters
7135
7128
----------------
7136
7129
**kwargs
7137
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
7138
- properties:
7130
+ Keyword arguments control the `.Line2D` properties:
7139
7131
7140
- %(_Line2D_docstr)s
7132
+ %(_Line2D_docstr)s
7141
7133
7142
7134
See Also
7143
7135
--------
@@ -7221,16 +7213,15 @@ def magnitude_spectrum(self, x, Fs=None, Fc=None, window=None,
7221
7213
freqs : 1-D array
7222
7214
The frequencies corresponding to the elements in *spectrum*.
7223
7215
7224
- line : a :class:`~matplotlib.lines .Line2D` instance
7216
+ line : a ` .Line2D` instance
7225
7217
The line created by this function.
7226
7218
7227
7219
Other Parameters
7228
7220
----------------
7229
7221
**kwargs
7230
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
7231
- properties:
7222
+ Keyword arguments control the `.Line2D` properties:
7232
7223
7233
- %(_Line2D_docstr)s
7224
+ %(_Line2D_docstr)s
7234
7225
7235
7226
See Also
7236
7227
--------
@@ -7309,16 +7300,15 @@ def angle_spectrum(self, x, Fs=None, Fc=None, window=None,
7309
7300
freqs : 1-D array
7310
7301
The frequencies corresponding to the elements in *spectrum*.
7311
7302
7312
- line : a :class:`~matplotlib.lines .Line2D` instance
7303
+ line : a ` .Line2D` instance
7313
7304
The line created by this function.
7314
7305
7315
7306
Other Parameters
7316
7307
----------------
7317
7308
**kwargs
7318
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
7319
- properties:
7309
+ Keyword arguments control the `.Line2D` properties:
7320
7310
7321
- %(_Line2D_docstr)s
7311
+ %(_Line2D_docstr)s
7322
7312
7323
7313
See Also
7324
7314
--------
@@ -7382,16 +7372,15 @@ def phase_spectrum(self, x, Fs=None, Fc=None, window=None,
7382
7372
freqs : 1-D array
7383
7373
The frequencies corresponding to the elements in *spectrum*.
7384
7374
7385
- line : a :class:`~matplotlib.lines .Line2D` instance
7375
+ line : a ` .Line2D` instance
7386
7376
The line created by this function.
7387
7377
7388
7378
Other Parameters
7389
7379
----------------
7390
7380
**kwargs
7391
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
7392
- properties:
7381
+ Keyword arguments control the `.Line2D` properties:
7393
7382
7394
- %(_Line2D_docstr)s
7383
+ %(_Line2D_docstr)s
7395
7384
7396
7385
See Also
7397
7386
--------
@@ -7463,10 +7452,9 @@ def cohere(self, x, y, NFFT=256, Fs=2, Fc=0, detrend=mlab.detrend_none,
7463
7452
Other Parameters
7464
7453
----------------
7465
7454
**kwargs
7466
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
7467
- properties:
7455
+ Keyword arguments control the `.Line2D` properties:
7468
7456
7469
- %(_Line2D_docstr)s
7457
+ %(_Line2D_docstr)s
7470
7458
7471
7459
References
7472
7460
----------
@@ -7546,8 +7534,8 @@ def specgram(self, x, NFFT=None, Fs=None, Fc=None, detrend=None,
7546
7534
of the bins is smaller than those of the segments.
7547
7535
7548
7536
**kwargs
7549
- Additional kwargs are passed on to imshow which makes the
7550
- specgram image.
7537
+ Additional keyword arguments are passed on to imshow which makes
7538
+ the specgram image.
7551
7539
7552
7540
Returns
7553
7541
-------
@@ -7653,14 +7641,14 @@ def spy(self, Z, precision=0, marker=None, markersize=None,
7653
7641
**Image style**
7654
7642
7655
7643
If *marker* and *markersize* are *None*, `~.Axes.imshow` is used. Any
7656
- extra remaining kwargs are passed to this method.
7644
+ extra remaining keyword arguments are passed to this method.
7657
7645
7658
7646
**Marker style**
7659
7647
7660
7648
If *Z* is a `scipy.sparse.spmatrix` or *marker* or *markersize* are
7661
- *None*, a `~matplotlib.lines. Line2D` object will be returned with
7662
- the value of marker determining the marker type, and any
7663
- remaining kwargs passed to `~.Axes.plot`.
7649
+ *None*, a `. Line2D` object will be returned with the value of marker
7650
+ determining the marker type, and any remaining keyword arguments
7651
+ passed to `~.Axes.plot`.
7664
7652
7665
7653
Parameters
7666
7654
----------
@@ -7719,7 +7707,7 @@ def spy(self, Z, precision=0, marker=None, markersize=None,
7719
7707
For the marker style, you can pass any `.Line2D` property except
7720
7708
for *linestyle*:
7721
7709
7722
- %(_Line2D_docstr)s
7710
+ %(_Line2D_docstr)s
7723
7711
"""
7724
7712
if marker is None and markersize is None and hasattr (Z , 'tocoo' ):
7725
7713
marker = 's'
0 commit comments