@@ -423,8 +423,7 @@ def inset_axes(self, bounds, *, transform=None, zorder=5,
423
423
parent axes.
424
424
425
425
**kwargs
426
-
427
- Other *kwargs* are passed on to the `axes.Axes` child axes.
426
+ Other keyword arguments are passed on to the `.Axes` child axes.
428
427
429
428
Returns
430
429
-------
@@ -507,7 +506,7 @@ def indicate_inset(self, bounds, inset_ax=None, *, transform=None,
507
506
(just below the default level of inset axes).
508
507
509
508
**kwargs
510
- Other *kwargs* are passed on to the rectangle patch.
509
+ Other keyword arguments are passed on to the rectangle patch.
511
510
512
511
Returns
513
512
-------
@@ -592,7 +591,7 @@ def indicate_inset_zoom(self, inset_ax, **kwargs):
592
591
chosen so as to not overlap with the indicator box.
593
592
594
593
**kwargs
595
- Other *kwargs* are passed on to `.Axes.indicate_inset`
594
+ Other keyword arguments are passed on to `.Axes.indicate_inset`
596
595
597
596
Returns
598
597
-------
@@ -803,13 +802,13 @@ def axhline(self, y=0, xmin=0, xmax=1, **kwargs):
803
802
804
803
Returns
805
804
-------
806
- line : :class:`~matplotlib.lines. Line2D`
805
+ line : a `. Line2D` instance
807
806
808
807
Other Parameters
809
808
----------------
810
809
**kwargs
811
- Valid keyword arguments are :class:`~matplotlib.lines. Line2D`
812
- properties, with the exception of 'transform':
810
+ Valid keyword arguments are `. Line2D` properties, with the
811
+ exception of 'transform':
813
812
814
813
%(_Line2D_docstr)s
815
814
@@ -871,13 +870,13 @@ def axvline(self, x=0, ymin=0, ymax=1, **kwargs):
871
870
872
871
Returns
873
872
-------
874
- line : :class:`~matplotlib.lines. Line2D`
873
+ line : a `. Line2D` instance
875
874
876
875
Other Parameters
877
876
----------------
878
877
**kwargs
879
- Valid keyword arguments are :class:`~matplotlib.lines. Line2D`
880
- properties, with the exception of 'transform':
878
+ Valid keyword arguments are `. Line2D` properties, with the
879
+ exception of 'transform':
881
880
882
881
%(_Line2D_docstr)s
883
882
@@ -1685,14 +1684,13 @@ def plot_date(self, x, y, fmt='o', tz=None, xdate=True, ydate=False,
1685
1684
Returns
1686
1685
-------
1687
1686
lines
1688
- A list of `~ .Line2D` objects representing the plotted data.
1687
+ A list of `.Line2D` objects representing the plotted data.
1689
1688
1690
1689
1691
1690
Other Parameters
1692
1691
----------------
1693
1692
**kwargs
1694
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
1695
- properties:
1693
+ Keyword arguments control the `.Line2D` properties:
1696
1694
1697
1695
%(_Line2D_docstr)s
1698
1696
@@ -1761,7 +1759,7 @@ def loglog(self, *args, **kwargs):
1761
1759
Returns
1762
1760
-------
1763
1761
lines
1764
- A list of `~ .Line2D` objects representing the plotted data.
1762
+ A list of `.Line2D` objects representing the plotted data.
1765
1763
1766
1764
Other Parameters
1767
1765
----------------
@@ -1814,7 +1812,7 @@ def semilogx(self, *args, **kwargs):
1814
1812
Returns
1815
1813
-------
1816
1814
lines
1817
- A list of `~ .Line2D` objects representing the plotted data.
1815
+ A list of `.Line2D` objects representing the plotted data.
1818
1816
1819
1817
Other Parameters
1820
1818
----------------
@@ -1863,7 +1861,7 @@ def semilogy(self, *args, **kwargs):
1863
1861
Returns
1864
1862
-------
1865
1863
lines
1866
- A list of `~ .Line2D` objects representing the plotted data.
1864
+ A list of `.Line2D` objects representing the plotted data.
1867
1865
1868
1866
Other Parameters
1869
1867
----------------
@@ -3151,10 +3149,8 @@ def errorbar(self, x, y, yerr=None, xerr=None,
3151
3149
container : :class:`~.container.ErrorbarContainer`
3152
3150
The container contains:
3153
3151
3154
- - plotline: :class:`~matplotlib.lines.Line2D` instance of
3155
- x, y plot markers and/or line.
3156
- - caplines: A tuple of :class:`~matplotlib.lines.Line2D` instances
3157
- of the error bar caps.
3152
+ - plotline: `.Line2D` instance of x, y plot markers and/or line.
3153
+ - caplines: A tuple of `.Line2D` instances of the error bar caps.
3158
3154
- barlinecols: A tuple of
3159
3155
:class:`~matplotlib.collections.LineCollection` with the
3160
3156
horizontal and vertical error ranges.
@@ -3624,9 +3620,8 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None,
3624
3620
-------
3625
3621
result : dict
3626
3622
A dictionary mapping each component of the boxplot to a list
3627
- of the :class:`matplotlib.lines.Line2D` instances
3628
- created. That dictionary has the following keys (assuming
3629
- vertical boxplots):
3623
+ of the `.Line2D` instances created. That dictionary has the
3624
+ following keys (assuming vertical boxplots):
3630
3625
3631
3626
- ``boxes``: the main body of the boxplot showing the
3632
3627
quartiles and the median's confidence intervals if
@@ -3824,9 +3819,8 @@ def bxp(self, bxpstats, positions=None, widths=None, vert=True,
3824
3819
makes horizontal boxes.
3825
3820
3826
3821
patch_artist : bool, default = False
3827
- If `False` produces boxes with the
3828
- `~matplotlib.lines.Line2D` artist. If `True` produces boxes
3829
- with the `~matplotlib.patches.Patch` artist.
3822
+ If `False` produces boxes with the `.Line2D` artist.
3823
+ If `True` produces boxes with the `~matplotlib.patches.Patch` artist.
3830
3824
3831
3825
shownotches : bool, default = False
3832
3826
If `False` (default), produces a rectangular box plot.
@@ -3879,9 +3873,8 @@ def bxp(self, bxpstats, positions=None, widths=None, vert=True,
3879
3873
-------
3880
3874
result : dict
3881
3875
A dictionary mapping each component of the boxplot to a list
3882
- of the :class:`matplotlib.lines.Line2D` instances
3883
- created. That dictionary has the following keys (assuming
3884
- vertical boxplots):
3876
+ of the `.Line2D` instances created. That dictionary has the
3877
+ following keys (assuming vertical boxplots):
3885
3878
3886
3879
- ``boxes``: the main body of the boxplot showing the
3887
3880
quartiles and the median's confidence intervals if
@@ -7001,15 +6994,14 @@ def psd(self, x, NFFT=None, Fs=None, Fc=None, detrend=None,
7001
6994
freqs : 1-D array
7002
6995
The frequencies corresponding to the elements in *Pxx*.
7003
6996
7004
- line : a :class:`~matplotlib.lines .Line2D` instance
6997
+ line : a ` .Line2D` instance
7005
6998
The line created by this function.
7006
6999
Only returned if *return_line* is True.
7007
7000
7008
7001
Other Parameters
7009
7002
----------------
7010
7003
**kwargs
7011
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
7012
- properties:
7004
+ Keyword arguments control the `.Line2D` properties:
7013
7005
7014
7006
%(_Line2D_docstr)s
7015
7007
@@ -7120,15 +7112,14 @@ def csd(self, x, y, NFFT=None, Fs=None, Fc=None, detrend=None,
7120
7112
freqs : 1-D array
7121
7113
The frequencies corresponding to the elements in *Pxy*.
7122
7114
7123
- line : a :class:`~matplotlib.lines .Line2D` instance
7115
+ line : a ` .Line2D` instance
7124
7116
The line created by this function.
7125
7117
Only returned if *return_line* is True.
7126
7118
7127
7119
Other Parameters
7128
7120
----------------
7129
7121
**kwargs
7130
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
7131
- properties:
7122
+ Keyword arguments control the `.Line2D` properties:
7132
7123
7133
7124
%(_Line2D_docstr)s
7134
7125
@@ -7214,14 +7205,13 @@ def magnitude_spectrum(self, x, Fs=None, Fc=None, window=None,
7214
7205
freqs : 1-D array
7215
7206
The frequencies corresponding to the elements in *spectrum*.
7216
7207
7217
- line : a :class:`~matplotlib.lines .Line2D` instance
7208
+ line : a ` .Line2D` instance
7218
7209
The line created by this function.
7219
7210
7220
7211
Other Parameters
7221
7212
----------------
7222
7213
**kwargs
7223
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
7224
- properties:
7214
+ Keyword arguments control the `.Line2D` properties:
7225
7215
7226
7216
%(_Line2D_docstr)s
7227
7217
@@ -7302,14 +7292,13 @@ def angle_spectrum(self, x, Fs=None, Fc=None, window=None,
7302
7292
freqs : 1-D array
7303
7293
The frequencies corresponding to the elements in *spectrum*.
7304
7294
7305
- line : a :class:`~matplotlib.lines .Line2D` instance
7295
+ line : a ` .Line2D` instance
7306
7296
The line created by this function.
7307
7297
7308
7298
Other Parameters
7309
7299
----------------
7310
7300
**kwargs
7311
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
7312
- properties:
7301
+ Keyword arguments control the `.Line2D` properties:
7313
7302
7314
7303
%(_Line2D_docstr)s
7315
7304
@@ -7375,14 +7364,13 @@ def phase_spectrum(self, x, Fs=None, Fc=None, window=None,
7375
7364
freqs : 1-D array
7376
7365
The frequencies corresponding to the elements in *spectrum*.
7377
7366
7378
- line : a :class:`~matplotlib.lines .Line2D` instance
7367
+ line : a ` .Line2D` instance
7379
7368
The line created by this function.
7380
7369
7381
7370
Other Parameters
7382
7371
----------------
7383
7372
**kwargs
7384
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
7385
- properties:
7373
+ Keyword arguments control the `.Line2D` properties:
7386
7374
7387
7375
%(_Line2D_docstr)s
7388
7376
@@ -7456,8 +7444,7 @@ def cohere(self, x, y, NFFT=256, Fs=2, Fc=0, detrend=mlab.detrend_none,
7456
7444
Other Parameters
7457
7445
----------------
7458
7446
**kwargs
7459
- Keyword arguments control the :class:`~matplotlib.lines.Line2D`
7460
- properties:
7447
+ Keyword arguments control the `.Line2D` properties:
7461
7448
7462
7449
%(_Line2D_docstr)s
7463
7450
@@ -7651,9 +7638,9 @@ def spy(self, Z, precision=0, marker=None, markersize=None,
7651
7638
**Marker style**
7652
7639
7653
7640
If *Z* is a `scipy.sparse.spmatrix` or *marker* or *markersize* are
7654
- *None*, a `~matplotlib.lines. Line2D` object will be returned with
7655
- the value of marker determining the marker type, and any
7656
- remaining kwargs passed to `~.Axes.plot`.
7641
+ *None*, a `. Line2D` object will be returned with the value of marker
7642
+ determining the marker type, and any remaining keyword arguments
7643
+ passed to `~.Axes.plot`.
7657
7644
7658
7645
Parameters
7659
7646
----------
0 commit comments