@@ -1745,18 +1745,13 @@ def loglog(self, *args, **kwargs):
1745
1745
Non-positive values can be masked as invalid, or clipped to a very
1746
1746
small positive number.
1747
1747
1748
+ **kwargs
1749
+ All parameters supported by `.plot`.
1750
+
1748
1751
Returns
1749
1752
-------
1750
1753
list of `.Line2D`
1751
1754
Objects representing the plotted data.
1752
-
1753
- Other Parameters
1754
- ----------------
1755
- data : indexable object, optional
1756
- DATA_PARAMETER_PLACEHOLDER
1757
-
1758
- **kwargs
1759
- All parameters supported by `.plot`.
1760
1755
"""
1761
1756
dx = {k : v for k , v in kwargs .items ()
1762
1757
if k in ['base' , 'subs' , 'nonpositive' ,
@@ -1801,18 +1796,13 @@ def semilogx(self, *args, **kwargs):
1801
1796
Non-positive values in x can be masked as invalid, or clipped to a
1802
1797
very small positive number.
1803
1798
1799
+ **kwargs
1800
+ All parameters supported by `.plot`.
1801
+
1804
1802
Returns
1805
1803
-------
1806
1804
list of `.Line2D`
1807
1805
Objects representing the plotted data.
1808
-
1809
- Other Parameters
1810
- ----------------
1811
- data : indexable object, optional
1812
- DATA_PARAMETER_PLACEHOLDER
1813
-
1814
- **kwargs
1815
- All parameters supported by `.plot`.
1816
1806
"""
1817
1807
d = {k : v for k , v in kwargs .items ()
1818
1808
if k in ['base' , 'subs' , 'nonpositive' ,
@@ -1853,18 +1843,13 @@ def semilogy(self, *args, **kwargs):
1853
1843
Non-positive values in y can be masked as invalid, or clipped to a
1854
1844
very small positive number.
1855
1845
1846
+ **kwargs
1847
+ All parameters supported by `.plot`.
1848
+
1856
1849
Returns
1857
1850
-------
1858
1851
list of `.Line2D`
1859
1852
Objects representing the plotted data.
1860
-
1861
- Other Parameters
1862
- ----------------
1863
- data : indexable object, optional
1864
- DATA_PARAMETER_PLACEHOLDER
1865
-
1866
- **kwargs
1867
- All parameters supported by `.plot`.
1868
1853
"""
1869
1854
d = {k : v for k , v in kwargs .items ()
1870
1855
if k in ['base' , 'subs' , 'nonpositive' ,
@@ -2098,10 +2083,6 @@ def step(self, x, y, *args, where='pre', data=None, **kwargs):
2098
2083
and plotted on the given positions, however, this is a rarely
2099
2084
needed feature for step plots.
2100
2085
2101
- data : indexable object, optional
2102
- An object with labelled data. If given, provide the label names to
2103
- plot in *x* and *y*.
2104
-
2105
2086
where : {'pre', 'post', 'mid'}, default: 'pre'
2106
2087
Define where the steps should be placed:
2107
2088
@@ -2113,22 +2094,17 @@ def step(self, x, y, *args, where='pre', data=None, **kwargs):
2113
2094
value ``y[i]``.
2114
2095
- 'mid': Steps occur half-way between the *x* positions.
2115
2096
2116
- Returns
2117
- -------
2118
- list of `.Line2D`
2119
- Objects representing the plotted data.
2120
-
2121
- Other Parameters
2122
- ----------------
2123
2097
data : indexable object, optional
2124
- DATA_PARAMETER_PLACEHOLDER
2098
+ An object with labelled data. If given, provide the label names to
2099
+ plot in *x* and *y*.
2125
2100
2126
2101
**kwargs
2127
2102
Additional parameters are the same as those for `.plot`.
2128
2103
2129
- Notes
2130
- -----
2131
- .. [notes section required to get data note injection right]
2104
+ Returns
2105
+ -------
2106
+ list of `.Line2D`
2107
+ Objects representing the plotted data.
2132
2108
"""
2133
2109
_api .check_in_list (('pre' , 'post' , 'mid' ), where = where )
2134
2110
kwargs ['drawstyle' ] = 'steps-' + where
@@ -5144,10 +5120,6 @@ def _fill_between_x_or_y(
5144
5120
--------
5145
5121
fill_between : Fill between two sets of y-values.
5146
5122
fill_betweenx : Fill between two sets of x-values.
5147
-
5148
- Notes
5149
- -----
5150
- .. [notes section required to get data note injection right]
5151
5123
"""
5152
5124
5153
5125
dep_dir = {"x" : "y" , "y" : "x" }[ind_dir ]
@@ -6215,10 +6187,6 @@ def pcolorfast(self, *args, alpha=None, norm=None, cmap=None, vmin=None,
6215
6187
**kwargs
6216
6188
Supported additional parameters depend on the type of grid.
6217
6189
See return types of *image* for further description.
6218
-
6219
- Notes
6220
- -----
6221
- .. [notes section required to get data note injection right]
6222
6190
"""
6223
6191
6224
6192
C = args [- 1 ]
0 commit comments