@@ -4726,9 +4726,10 @@ def legend(self, *args, **kwargs):
47264726 columnspacing the spacing between columns
47274727 ================ ====================================================
47284728
4729- .. Note:: Not all kinds of artist are supported by the legend command.
4730- See LINK (FIXME) for details.
4729+ .. note::
47314730
4731+ Not all kinds of artist are supported by the legend command.
4732+ See :ref:`plotting-guide-legend` for details.
47324733
47334734 **Example:**
47344735
@@ -7346,9 +7347,11 @@ def pcolor(self, *args, **kwargs):
73467347 """
73477348 Create a pseudocolor plot of a 2-D array.
73487349
7349- Note: pcolor can be very slow for large arrays; consider
7350- using the similar but much faster
7351- :func:`~matplotlib.pyplot.pcolormesh` instead.
7350+ .. note::
7351+
7352+ pcolor can be very slow for large arrays; consider
7353+ using the similar but much faster
7354+ :func:`~matplotlib.pyplot.pcolormesh` instead.
73527355
73537356 Call signatures::
73547357
@@ -7471,14 +7474,16 @@ def pcolor(self, *args, **kwargs):
74717474
74727475 %(PolyCollection)s
74737476
7474- Note: the default *antialiaseds* is False if the default
7475- *edgecolors*="none" is used. This eliminates artificial lines
7476- at patch boundaries, and works regardless of the value of
7477- alpha. If *edgecolors* is not "none", then the default
7478- *antialiaseds* is taken from
7479- rcParams['patch.antialiased'], which defaults to *True*.
7480- Stroking the edges may be preferred if *alpha* is 1, but
7481- will cause artifacts otherwise.
7477+ .. note::
7478+
7479+ The default *antialiaseds* is False if the default
7480+ *edgecolors*="none" is used. This eliminates artificial lines
7481+ at patch boundaries, and works regardless of the value of
7482+ alpha. If *edgecolors* is not "none", then the default
7483+ *antialiaseds* is taken from
7484+ rcParams['patch.antialiased'], which defaults to *True*.
7485+ Stroking the edges may be preferred if *alpha* is 1, but
7486+ will cause artifacts otherwise.
74827487
74837488 .. seealso::
74847489
@@ -8865,10 +8870,12 @@ def specgram(self, x, NFFT=256, Fs=2, Fc=0, detrend=mlab.detrend_none,
88658870 - *Pxx* is an array of shape `(len(times), len(freqs))` of power
88668871 - *im* is a :class:`~matplotlib.image.AxesImage` instance
88678872
8868- Note: If *x* is real (i.e. non-complex), only the positive
8869- spectrum is shown. If *x* is complex, both positive and
8870- negative parts of the spectrum are shown. This can be
8871- overridden using the *sides* keyword argument.
8873+ .. note::
8874+
8875+ If *x* is real (i.e. non-complex), only the positive
8876+ spectrum is shown. If *x* is complex, both positive and
8877+ negative parts of the spectrum are shown. This can be
8878+ overridden using the *sides* keyword argument.
88728879
88738880 Also note that while the plot is in dB, the *Pxx* array returned is
88748881 linear in power.
0 commit comments