8000 Remove manually added notes sections · matplotlib/matplotlib@ad61f80 · GitHub
[go: up one dir, main page]

Skip to content

Commit ad61f80

Browse files
committed
Remove manually added notes sections
1 parent ced8810 commit ad61f80

File tree

1 file changed

+0
-33
lines changed

1 file changed

+0
-33
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -2615,11 +2615,6 @@ def broken_barh(self, xranges, yrange, **kwargs):
26152615
Returns
26162616
-------
26172617
collection : A :class:`~.collections.BrokenBarHCollection`
2618-
2619-
Notes
2620-
-----
2621-
.. [Notes section required for data comment. See #10189.]
2622-
26232618
"""
26242619
# process the unit information
26252620
if len(xranges):
@@ -3183,10 +3178,6 @@ def errorbar(self, x, y, yerr=None, xerr=None,
31833178
31843179
%(_Line2D_docstr)s
31853180
3186-
Notes
3187-
-----
3188-
.. [Notes section required for data comment. See #10189.]
3189-
31903181
"""
31913182
kwargs = cbook.normalize_kwargs(kwargs, mlines.Line2D)
31923183
# anything that comes in as 'None', drop so the default thing
@@ -3641,10 +3632,6 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None,
36413632
36423633
- ``means``: points or lines representing the means.
36433634
3644-
Notes
3645-
-----
3646-
.. [Notes section required for data comment. See #10189.]
3647-
36483635
"""
36493636

36503637
# Missing arguments default to rcParams.
@@ -6579,10 +6566,6 @@ def hist(self, x, bins=None, range=None, density=None, weights=None,
65796566
--------
65806567
hist2d : 2D histograms
65816568
6582-
Notes
6583-
-----
6584-
.. [Notes section required for data comment. See #10189.]
6585-
65866569
"""
65876570
# Avoid shadowing the builtin.
65886571
bin_range = range
@@ -7299,10 +7282,6 @@ def magnitude_spectrum(self, x, Fs=None, Fc=None, window=None,
72997282
:func:`specgram` can plot the magnitude spectrum of segments within
73007283
the signal in a colormap.
73017284
7302-
Notes
7303-
-----
7304-
.. [Notes section required for data comment. See #10189.]
7305-
73067285
"""
73077286
if Fc is None:
73087287
Fc = 0
@@ -7388,10 +7367,6 @@ def angle_spectrum(self, x, Fs=None, Fc=None, window=None,
73887367
:func:`specgram` can plot the angle spectrum of segments within the
73897368
signal in a colormap.
73907369
7391-
Notes
7392-
-----
7393-
.. [Notes section required for data comment. See #10189.]
7394-
73957370
"""
73967371
if Fc is None:
73977372
Fc = 0
@@ -7464,10 +7439,6 @@ def phase_spectrum(self, x, Fs=None, Fc=None, window=None,
74647439
:func:`specgram` can plot the phase spectrum of segments within the
74657440
signal in a colormap.
74667441
7467-
Notes
7468-
-----
7469-
.. [Notes section required for data comment. See #10189.]
7470-
74717442
"""
74727443
if Fc is None:
74737444
Fc = 0
@@ -7966,10 +7937,6 @@ def violinplot(self, dataset, positions=None, vert=True, widths=0.5,
79667937
- ``cmedians``: A `~.collections.LineCollection` instance that
79677938
marks the median values of each of the violin's distribution.
79687939
7969-
Notes
7970-
-----
7971-
.. [Notes section required for data comment. See #10189.]
7972-
79737940
"""
79747941

79757942
def _kde_method(X, coords):

0 commit comments

Comments
 (0)
0