Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Latest commit

 

History

History
1041 lines (737 loc) · 37.3 KB

File metadata and controls

1041 lines (737 loc) · 37.3 KB
.. redirect-from:: /users/prev_whats_new/whats_new_3.4.0

For a list of all of the issues and pull requests since the last revision, see the :ref:`github-stats`.

Table of Contents

.. toctree::
   :maxdepth: 4

New .figure.Figure.add_subfigure and .figure.Figure.subfigures functionalities allow creating virtual figures within figures. Similar nesting was previously done with nested gridspecs (see :doc:`/gallery/subplots_axes_and_figures/gridspec_nested`). However, this did not allow localized figure artists (e.g., a colorbar or suptitle) that only pertained to each subgridspec.

The new methods .figure.Figure.add_subfigure and .figure.Figure.subfigures are meant to rhyme with .figure.Figure.add_subplot and .figure.Figure.subplots and have most of the same arguments.

See :doc:`/gallery/subplots_axes_and_figures/subfigures` for further details.

Note

The subfigure functionality is experimental API as of v3.4.

.. plot::

    def example_plot(ax, fontsize=12, hide_labels=False):
        pc = ax.pcolormesh(np.random.randn(30, 30))
        if not hide_labels:
            ax.set_xlabel('x-label', fontsize=fontsize)
            ax.set_ylabel('y-label', fontsize=fontsize)
            ax.set_title('Title', fontsize=fontsize)
        return pc

    np.random.seed(19680808)
    fig = plt.figure(constrained_layout=True, figsize=(10, 4))
    subfigs = fig.subfigures(1, 2, wspace=0.07)

    axsLeft = subfigs[0].subplots(1, 2, sharey=True)
    subfigs[0].set_facecolor('#eee')
    for ax in axsLeft:
        pc = example_plot(ax)
    subfigs[0].suptitle('Left plots', fontsize='x-large')
    subfigs[0].colorbar(pc, shrink=0.6, ax=axsLeft, location='bottom')

    axsRight = subfigs[1].subplots(3, 1, sharex=True)
    for nn, ax in enumerate(axsRight):
        pc = example_plot(ax, hide_labels=True)
        if nn == 2:
            ax.set_xlabel('xlabel')
        if nn == 1:
            ax.set_ylabel('ylabel')
    subfigs[1].colorbar(pc, shrink=0.6, ax=axsRight)
    subfigs[1].suptitle('Right plots', fontsize='x-large')

    fig.suptitle('Figure suptitle', fontsize='xx-large')

    plt.show()

.Figure.subplot_mosaic and .pyplot.subplot_mosaic now accept a single-line string, using semicolons to delimit rows. Namely,

plt.subplot_mosaic(
    """
    AB
    CC
    """)

may be written as the shorter:

.. plot::
    :include-source:

    plt.subplot_mosaic("AB;CC")

The behavior of the functions to create new Axes (.pyplot.axes, .pyplot.subplot, .figure.Figure.add_axes, .figure.Figure.add_subplot) has changed. In the past, these functions would detect if you were attempting to create Axes with the same keyword arguments as already-existing Axes in the current Figure, and if so, they would return the existing Axes. Now, .pyplot.axes, .figure.Figure.add_axes, and .figure.Figure.add_subplot will always create new Axes. .pyplot.subplot will continue to reuse an existing Axes with a matching subplot spec and equal kwargs.

Correspondingly, the behavior of the functions to get the current Axes (.pyplot.gca, .figure.Figure.gca) has changed. In the past, these functions accepted keyword arguments. If the keyword arguments matched an already-existing Axes, then that Axes would be returned, otherwise new Axes would be created with those keyword arguments. Now, the keyword arguments are only considered if there are no Axes at all in the current figure. In a future release, these functions will not accept keyword arguments at all.

In particular, mpl_toolkits Axes subclasses can now be idiomatically used using, e.g., fig.add_subplot(axes_class=mpl_toolkits.axislines.Axes)

constrained_layout depends on a single .GridSpec for each logical layout on a figure. Previously, .pyplot.subplot and .pyplot.subplot2grid added a new GridSpec each time they were called and were therefore incompatible with constrained_layout.

Now subplot attempts to reuse the GridSpec if the number of rows and columns is the same as the top level GridSpec already in the figure, i.e., plt.subplot(2, 1, 2) will use the same GridSpec as plt.subplot(2, 1, 1) and the constrained_layout=True option to ~.figure.Figure will work.

In contrast, mixing nrows and ncols will not work with constrained_layout: plt.subplot(2, 2, 1) followed by plt.subplots(2, 1, 2) will still produce two GridSpecs, and constrained_layout=True will give bad results. In order to get the desired effect, the second call can specify the cells the second Axes is meant to cover: plt.subplots(2, 2, (2, 4)), or the more Pythonic plt.subplot2grid((2, 2), (0, 1), rowspan=2) can be used.

~.Axes.axline now supports the transform parameter, which applies to the points xy1, xy2. The slope (if given) is always in data coordinates.

For example, this can be used with ax.transAxes for drawing lines with a fixed slope. In the following plot, the line appears through the same point on both Axes, even though they show different data limits.

.. plot::
    :include-source:

    fig, axs = plt.subplots(1, 2)

    for i, ax in enumerate(axs):
        ax.axline((0.25, 0), slope=2, transform=ax.transAxes)
        ax.set(xlim=(i, i+5), ylim=(i, i+5))

A new .Axes.bar_label method has been added for auto-labeling bar charts.

/gallery/lines_bars_and_markers/images/sphx_glr_bar_label_demo_001.png

Example of the new automatic labeling.

Similar to some other rectangle properties, it is now possible to hand a list of hatch styles to ~.axes.Axes.bar and ~.axes.Axes.barh in order to create bars with different hatch styles, e.g.

.. plot::

    fig, ax = plt.subplots()
    ax.bar([1, 2], [2, 3], hatch=['+', 'o'])
    plt.show()

.BarContainer now accepts a new string argument orientation. It can be either 'vertical' or 'horizontal', default is None.

Pass fmt="%1.3f" to the contouring call to restore the old default label format.

Formerly, .Axes.errorbar incorrectly skipped the Axes property cycle if a color was explicitly specified, even if the property cycler was for other properties (such as line style). Now, .Axes.errorbar will advance the Axes property cycle as done for .Axes.plot, i.e., as long as all properties in the cycler are not explicitly passed.

For example, the following will cycle through the line styles:

.. plot::
    :include-source:

    x = np.arange(0.1, 4, 0.5)
    y = np.exp(-x)
    offsets = [0, 1]

    plt.rcParams['axes.prop_cycle'] = plt.cycler('linestyle', ['-', '--'])

    fig, ax = plt.subplots()
    for offset in offsets:
        ax.errorbar(x, y + offset, xerr=0.1, yerr=0.3, fmt='tab:blue')

Similar to the markevery parameter to ~.Axes.plot, the errorevery parameter of ~.Axes.errorbar now accept slices and NumPy fancy indexes (which must match the size of x).

.. plot::

    x = np.linspace(0, 1, 15)
    y = x * (1-x)
    yerr = y/6

    fig, ax = plt.subplots(2, constrained_layout=True)
    ax[0].errorbar(x, y, yerr, capsize=2)
    ax[0].set_title('errorevery unspecified')

    ax[1].errorbar(x, y, yerr, capsize=2,
                   errorevery=[False, True, True, False, True] * 3)
    ax[1].set_title('errorevery=[False, True, True, False, True] * 3')

As with the x and y parameters, .Axes.hexbin now supports passing the C parameter using a data reference.

.. plot::
    :include-source:

    data = {
        'a': np.random.rand(1000),
        'b': np.random.rand(1000),
        'c': np.random.rand(1000),
    }

    fig, ax = plt.subplots()
    ax.hexbin('a', 'b', C='c', data=data, gridsize=10)

The format parameter of matplotlib.sankey.Sankey can now accept callables.

This allows the use of an arbitrary function to label flows, for example allowing the mapping of numbers to emoji.

.. plot::

    from matplotlib.sankey import Sankey
    import math


    def display_in_cats(values, min_cats, max_cats):
        def display_in_cat_scale(value):
            max_value = max(values, key=abs)
            number_cats_to_show = \
                max(min_cats, math.floor(abs(value) / max_value * max_cats))
            return str(number_cats_to_show * '🐱')

        return display_in_cat_scale


    flows = [35, 15, 40, -20, -15, -5, -40, -10]
    orientations = [-1, 1, 0, 1, 1, 1, -1, -1]

    # Cats are good, we want a strictly positive number of them
    min_cats = 1
    # More than four cats might be too much for some people
    max_cats = 4

    cats_format = display_in_cats(flows, min_cats, max_cats)

    sankey = Sankey(flows=flows, orientations=orientations, format=cats_format,
                    offset=.1, head_angle=180, shoulder=0, scale=.010)

    diagrams = sankey.finish()

    diagrams[0].texts[2].set_text('')

    plt.title(f'Sankey flows measured in cats \n'
              f'🐱 = {max(flows, key=abs) / max_cats}')

    plt.show()

Axes.spines is now a dedicated container class .Spines for a set of .Spines instead of an OrderedDict. On top of dict-like access, Axes.spines now also supports some pandas.Series-like features.

Accessing single elements by item or by attribute:

ax.spines['top'].set_visible(False)
ax.spines.top.set_visible(False)

Accessing a subset of items:

ax.spines[['top', 'right']].set_visible(False)

Accessing all items simultaneously:

ax.spines[:].set_visible(False)

.pyplot.stairs and the underlying artist ~.matplotlib.patches.StepPatch provide a cleaner interface for plotting stepwise constant functions for the common case that you know the step edges. This supersedes many use cases of .pyplot.step, for instance when plotting the output of numpy.histogram.

For both the artist and the function, the x-like edges input is one element longer than the y-like values input

.. plot::

    np.random.seed(0)
    h, edges = np.histogram(np.random.normal(5, 2, 5000),
                            bins=np.linspace(0,10,20))

    fig, ax = plt.subplots(constrained_layout=True)

    ax.stairs(h, edges)

    plt.show()

See :doc:`/gallery/lines_bars_and_markers/stairs_demo` for examples.

By default, stem lines are vertical. They can be changed to horizontal using the orientation parameter of .Axes.stem or .pyplot.stem:

.. plot::

    locs = np.linspace(0.1, 2 * np.pi, 25)
    heads = np.cos(locs)

    fig, ax = plt.subplots()
    ax.stem(locs, heads, orientation='horizontal')

Angles specified on the Bracket arrow styles (]-[, ]-, -[, or |-| passed to arrowstyle parameter of .FancyArrowPatch) are now applied. Previously, the angleA and angleB options were allowed, but did nothing.

.. plot::

    import matplotlib.patches as mpatches

    fig, ax = plt.subplots()
    ax.set(xlim=(0, 1), ylim=(-1, 4))

    for i, stylename in enumerate((']-[', '|-|')):
        for j, angle in enumerate([-30, 60]):
            arrowstyle = f'{stylename},angleA={angle},angleB={-angle}'
            patch = mpatches.FancyArrowPatch((0.1, 2*i + j), (0.9, 2*i + j),
                                             arrowstyle=arrowstyle,
                                             mutation_scale=25)
            ax.text(0.5, 2*i + j, arrowstyle,
                    verticalalignment='bottom', horizontalalignment='center')
            ax.add_patch(patch)

The new .TickedStroke patheffect can be used to produce lines with a ticked style. This can be used to, e.g., distinguish the valid and invalid sides of the constraint boundaries in the solution space of optimizations.

/gallery/misc/images/sphx_glr_tickedstroke_demo_002.png

Reworking the handling of color mapping and the keyword arguments for facecolor and edgecolor has resulted in three behavior changes:

  1. Color mapping can be turned off by calling Collection.set_array(None). Previously, this would have no effect.
  2. When a mappable array is set, with facecolor='none' and edgecolor='face', both the faces and the edges are left uncolored. Previously the edges would be color-mapped.
  3. When a mappable array is set, with facecolor='none' and edgecolor='red', the edges are red. This addresses Issue #1302. Previously the edges would be color-mapped.

Previously, the alpha value controlling transparency in collections could be specified only as a scalar applied to all elements in the collection. For example, all the markers in a ~.Axes.scatter plot, or all the quadrilaterals in a ~.Axes.pcolormesh plot, would have the same alpha value.

Now it is possible to supply alpha as an array with one value for each element (marker, quadrilateral, etc.) in a collection.

.. plot::

    x = np.arange(5, dtype=float)
    y = np.arange(5, dtype=float)
    # z and zalpha for demo pcolormesh
    z = x[1:, np.newaxis] + y[np.newaxis, 1:]
    zalpha = np.ones_like(z)
    zalpha[::2, ::2] = 0.3  # alternate patches are partly transparent
    # s and salpha for demo scatter
    s = x
    salpha = np.linspace(0.1, 0.9, len(x))  # just a ramp

    fig, axs = plt.subplots(2, 2, constrained_layout=True)
    axs[0, 0].pcolormesh(x, y, z, alpha=zalpha)
    axs[0, 0].set_title("pcolormesh")
    axs[0, 1].scatter(x, y, c=s, alpha=salpha)
    axs[0, 1].set_title("color-mapped")
    axs[1, 0].scatter(x, y, c='k', alpha=salpha)
    axs[1, 0].set_title("c='k'")
    axs[1, 1].scatter(x, y, c=['r', 'g', 'b', 'c', 'm'], alpha=salpha)
    axs[1, 1].set_title("c=['r', 'g', 'b', 'c', 'm']")

Due to how the snapping keyword argument was getting passed to the Agg backend, previous versions of Matplotlib would appear to show lines between the grid edges of a mesh with transparency. This version now applies snapping by default. To restore the old behavior (e.g., for test images), you may set :rc:`pcolormesh.snap` to False.

.. plot::

    # Use old pcolormesh snapping values
    plt.rcParams['pcolormesh.snap'] = False
    fig, ax = plt.subplots()
    xx, yy = np.meshgrid(np.arange(10), np.arange(10))
    z = (xx + 1) * (yy + 1)
    mesh = ax.pcolormesh(xx, yy, z, shading='auto', alpha=0.5)
    fig.colorbar(mesh, orientation='vertical')
    ax.set_title('Before (pcolormesh.snap = False)')

Note that there are lines between the grid boundaries of the main plot which are not the same transparency. The colorbar also shows these lines when a transparency is added to the colormap because internally it uses pcolormesh to draw the colorbar. With snapping on by default (below), the lines at the grid boundaries disappear.

.. plot::

    fig, ax = plt.subplots()
    xx, yy = np.meshgrid(np.arange(10), np.arange(10))
    z = (xx + 1) * (yy + 1)
    mesh = ax.pcolormesh(xx, yy, z, shading='auto', alpha=0.5)
    fig.colorbar(mesh, orientation='vertical')
    ax.set_title('After (default: pcolormesh.snap = True)')

The matplotlib.colors.Colormap object now has image representations for IPython / Jupyter backends. Cells returning a colormap on the last line will display an image of the colormap.

.. only:: html

    .. code-block:: ipython

        In[1]: cmap = plt.get_cmap('viridis').with_extremes(bad='r', under='g', over='b')

        In[2]: cmap
        Out[2]:

viridis
viridis colormap
under
bad
over

Because the .Colormap.set_bad, .Colormap.set_under and .Colormap.set_over methods modify the colormap in place, the user must be careful to first make a copy of the colormap if setting the extreme colors e.g. for a builtin colormap.

The new Colormap.with_extremes(bad=..., under=..., over=...) can be used to first copy the colormap and set the extreme colors on that copy.

The new .Colormap.set_extremes method is provided for API symmetry with .Colormap.with_extremes, but note that it suffers from the same issue as the earlier individual setters.

matplotlib.colors.Colormap now has methods ~.colors.Colormap.get_under, ~.colors.Colormap.get_over, ~.colors.Colormap.get_bad for the colors used for out-of-range and masked values.

matplotlib.cm.unregister_cmap allows users to remove a colormap that they have previously registered.

In cases where data is symmetrical around a center, for example, positive and negative anomalies around a center zero, ~.matplotlib.colors.CenteredNorm is a new norm that automatically creates a symmetrical mapping around the center. This norm is well suited to be combined with a divergent colormap which uses an unsaturated color in its center.

.. plot::

    from matplotlib.colors import CenteredNorm

    np.random.seed(20201004)
    data = np.random.normal(size=(3, 4), loc=1)

    fig, ax = plt.subplots()
    pc = ax.pcolormesh(data, cmap=plt.get_cmap('RdGy'), norm=CenteredNorm())
    fig.colorbar(pc)
    ax.set_title('data centered around zero')

    # add text annotation
    for irow, data_row in enumerate(data):
        for icol, val in enumerate(data_row):
            ax.text(icol + 0.5, irow + 0.5, f'{val:.2f}', color='C0',
                    size=16, va='center', ha='center')
    plt.show()

If the center of symmetry is different from 0, it can be set with the vcenter argument. To manually set the range of ~.matplotlib.colors.CenteredNorm, use the halfrange argument.

See :ref:`colormapnorms` for an example and more details about data normalization.

The .FuncNorm allows for arbitrary normalization using functions for the forward and inverse.

.. plot::

    from matplotlib.colors import FuncNorm

    def forward(x):
        return x**2
    def inverse(x):
        return np.sqrt(x)

    norm = FuncNorm((forward, inverse), vmin=0, vmax=3)

    np.random.seed(20201004)
    data = np.random.normal(size=(3, 4), loc=1)

    fig, ax = plt.subplots()
    pc = ax.pcolormesh(data, norm=norm)
    fig.colorbar(pc)
    ax.set_title('squared normalization')

    # add text annotation
    for irow, data_row in enumerate(data):
        for icol, val in enumerate(data_row):
            ax.text(icol + 0.5, irow + 0.5, f'{val:.2f}', color='C0',
                    size=16, va='center', ha='center')
    plt.show()

See :ref:`colormapnorms` for an example and more details about data normalization.

... by passing location="top" or location="left" to the colorbar() call.

It is possible to add x- and y-labels to a whole figure, analogous to .Figure.suptitle using the new .Figure.supxlabel and .Figure.supylabel methods.

.. plot::

    np.random.seed(19680801)
    fig, axs = plt.subplots(3, 2, figsize=(5, 5), constrained_layout=True,
                            sharex=True, sharey=True)

    for nn, ax in enumerate(axs.flat):
        ax.set_title(f'Channel {nn}')
        ax.plot(np.cumsum(np.random.randn(50)))

    fig.supxlabel('Time [s]')
    fig.supylabel('Data [V]')

When calling subplots(..., sharex=True, sharey=True), Matplotlib automatically hides x tick labels for Axes not in the first column and y tick labels for Axes not in the last row. This behavior is incorrect if rcParams specify that Axes should be labeled on the top (rcParams["xtick.labeltop"] = True) or on the right (rcParams["ytick.labelright"] = True).

Cases such as the following are now handled correctly (adjusting visibility as needed on the first row and last column of Axes):

.. plot::
    :include-source:

    plt.rcParams["xtick.labelbottom"] = False
    plt.rcParams["xtick.labeltop"] = True
    plt.rcParams["ytick.labelleft"] = False
    plt.rcParams["ytick.labelright"] = True

    fig, axs = plt.subplots(2, 2, sharex=True, sharey=True)

When plotting multiple datasets by passing 2D data as y value to ~.Axes.plot, labels for the datasets can be passed as a list, the length matching the number of columns in y.

.. plot::
    :include-source:

    x = [1, 2, 3]

    y = [[1, 2],
         [2, 5],
         [4, 9]]

    plt.plot(x, y, label=['low', 'high'])
    plt.legend()


The new .Text parameter transform_rotates_text now sets whether rotations of the transform affect the text direction.

/gallery/text_labels_and_annotations/images/sphx_glr_text_rotation_relative_to_line_001.png

Example of the new transform_rotates_text parameter

.mathtext now supports overset and underset, called as \overset{annotation}{body} or \underset{annotation}{body}, where annotation is the text "above" or "below" the body.

.. plot::

    math_expr = r"$ x \overset{f}{\rightarrow} y \underset{f}{\leftarrow} z $"
    plt.text(0.4, 0.5, math_expr, usetex=False)

The new math_fontfamily parameter may be used to change the family of fonts for each individual text element in a plot. If no parameter is set, the global value :rc:`mathtext.fontset` will be used.

/gallery/text_labels_and_annotations/images/sphx_glr_mathtext_fontfamily_example_001.png

The horizontal alignment of text in a .TextArea or .AnchoredText may now be specified, which is mostly effective for multiline text:

.. plot::

    from matplotlib.offsetbox import AnchoredText

    fig, ax = plt.subplots()

    text0 = AnchoredText("test\ntest long text", loc="center left",
                         pad=0.2, prop={"ha": "left"})
    ax.add_artist(text0)

    text1 = AnchoredText("test\ntest long text", loc="center",
                         pad=0.2, prop={"ha": "center"})
    ax.add_artist(text1)

    text2 = AnchoredText("test\ntest long text", loc="center right",
                         pad=0.2, prop={"ha": "right"})
    ax.add_artist(text2)

URLs on .text.Text artists (i.e., from .Artist.set_url) will now be saved in PDF files.

The new :rc:`date.converter` allows toggling between matplotlib.dates.DateConverter and matplotlib.dates.ConciseDateConverter using the strings 'auto' and 'concise' respectively.

The new :rc:`date.interval_multiples` allows toggling between the dates locator trying to pick ticks at set intervals (i.e., day 1 and 15 of the month), versus evenly spaced ticks that start wherever the timeseries starts:

.. plot::
    :include-source:

    dates = np.arange('2001-01-10', '2001-05-23', dtype='datetime64[D]')
    y = np.sin(dates.astype(float) / 10)
    fig, axs = plt.subplots(nrows=2, constrained_layout=True)

    plt.rcParams['date.converter'] = 'concise'
    plt.rcParams['date.interval_multiples'] = True
    axs[0].plot(dates, y)

    plt.rcParams['date.converter'] = 'auto'
    plt.rcParams['date.interval_multiples'] = False
    axs[1].plot(dates, y)

The .AutoDateFormatter and .ConciseDateFormatter now respect :rc:`text.usetex`, and will thus use fonts consistent with TeX rendering of the default (non-date) formatter. TeX rendering may also be enabled/disabled by passing the usetex parameter when creating the formatter instance.

In the following plot, both the x-axis (dates) and y-axis (numbers) now use the same (TeX) font:

.. plot::

    from datetime import datetime, timedelta
    from matplotlib.dates import ConciseDateFormatter

    plt.rc('text', usetex=True)

    t0 = datetime(1968, 8, 1)
    ts = [t0 + i * timedelta(days=1) for i in range(10)]

    fig, ax = plt.subplots()
    ax.plot(ts, range(10))
    ax.xaxis.set_major_formatter(ConciseDateFormatter(ax.xaxis.get_major_locator()))
    ax.set_xlabel('Date')
    ax.set_ylabel('Value')

It is now possible to set :rc:`image.cmap` to a .Colormap instance, such as a colormap created with the new ~.Colormap.set_extremes above. (This can only be done from Python code, not from the :file:`matplotlibrc` file.)

Previously, :rc:`xtick.color` defined both the tick color and the label color. The label color can now be set independently using :rc:`xtick.labelcolor`. It defaults to 'inherit' which will take the value from :rc:`xtick.color`. The same holds for ytick.[label]color. For instance, to set the ticks to light grey and the tick labels to black, one can use the following code in a script:

import matplotlib as mpl

mpl.rcParams['xtick.labelcolor'] = 'lightgrey'
mpl.rcParams['xtick.color'] = 'black'
mpl.rcParams['ytick.labelcolor'] = 'lightgrey'
mpl.rcParams['ytick.color'] = 'black'

Or by adding the following lines to the :ref:`matplotlibrc <customizing-with-matplotlibrc-files>` file, or a Matplotlib style file:

xtick.labelcolor : lightgrey
xtick.color      : black
ytick.labelcolor : lightgrey
ytick.color      : black

The errorbar function .Axes.errorbar is ported into the 3D Axes framework in its entirety, supporting features such as custom styling for error lines and cap marks, control over errorbar spacing, upper and lower limit marks.

/gallery/mplot3d/images/sphx_glr_errorbar3d_001.png

Stem plots are now supported on 3D Axes. Much like 2D stems, ~.axes3d.Axes3D.stem supports plotting the stems in various orientations:

.. plot::

    theta = np.linspace(0, 2*np.pi)
    x = np.cos(theta - np.pi/2)
    y = np.sin(theta - np.pi/2)
    z = theta
    directions = ['z', 'x', 'y']
    names = [r'$\theta$', r'$\cos\theta$', r'$\sin\theta$']

    fig, axs = plt.subplots(1, 3, figsize=(8, 4),
                            constrained_layout=True,
                            subplot_kw={'projection': '3d'})
    for ax, zdir, name in zip(axs, directions, names):
        ax.stem(x, y, z, orientation=zdir)
        ax.set_title(name)
    fig.suptitle(r'A parametric circle: $(x, y) = (\cos\theta, \sin\theta)$')

See also the :doc:`/gallery/mplot3d/stem3d_demo` demo.

Previously, properties of a 3D Collection that were used for 3D effects (e.g., colors were modified to produce depth shading) could not be changed after it was created.

Now it is possible to modify all properties of 3D Collections at any time.

Click and drag with the middle mouse button to pan 3D Axes.

.widgets.RangeSlider allows for creating a slider that defines a range rather than a single value.

.. plot::

    fig, ax = plt.subplots(2, 1, figsize=(5, 1))
    fig.subplots_adjust(left=0.2, right=0.8)

    from matplotlib.widgets import Slider, RangeSlider
    Slider(ax[0], 'Slider', 0, 1)
    RangeSlider(ax[1], 'RangeSlider', 0, 1)

The ~matplotlib.widgets.Slider UI widget now accepts arrays for valstep. This generalizes the previous behavior by allowing the slider to snap to arbitrary values.

The .animation.Animation.pause and .animation.Animation.resume methods allow you to pause and resume animations. These methods can be used as callbacks for event listeners on UI elements so that your plots can have some playback control UI.

Captions were previously supported when using the plot_directive directive with an external source file by specifying content:

.. plot:: path/to/plot.py

    This is the caption for the plot.

The :caption: option allows specifying the caption for both external:

.. plot:: path/to/plot.py
    :caption: This is the caption for the plot.

and inline plots:

.. plot::
    :caption: This is a caption for the plot.

    plt.plot([1, 2, 3])

Elements of a vector output can be individually set to rasterized, using the rasterized keyword argument, or ~.artist.Artist.set_rasterized(). This can be useful to reduce file sizes. For figures with multiple raster elements they are now automatically merged into a smaller number of bitmaps where this will not effect the visual output. For cases with many elements this can result in significantly smaller file sizes.

To ensure this happens do not place vector elements between raster ones.

To inhibit this merging set Figure.suppressComposite to True.

When using .FFMpegFileWriter, the frame_format may now be set to "raw" or "rgba", which may be slightly faster than an image format, as no encoding/decoding need take place between Matplotlib and FFmpeg.

Double click events are now supported by the nbAgg and WebAgg backends. Formerly, WebAgg would report middle-click events as right clicks, but now reports the correct button type.

If the web browser and notebook support binary websockets, nbAgg will now use them for slightly improved transfer of figure display.

When PNG images have 256 colors or fewer, they are converted to indexed color before saving them in a PDF. This can result in a significant reduction in file size in some cases. This is particularly true for raster data that uses a colormap but no interpolation, such as Healpy mollview plots. Currently, this is only done for RGB images.

Font subsetting in PDF and PostScript has been re-written from the embedded ttconv C code to Python. Some composite characters and outlines may have changed slightly. This fixes ttc subsetting in PDF, and adds support for subsetting of type 3 OTF fonts, resulting in smaller files (much smaller when using CJK fonts), and avoids running into issues with type 42 embedding and certain PDF readers such as Acrobat Reader.

As with text produced in the Agg backend (see :ref:`the previous what's new entry <whats-new-3-2-0-kerning>` for examples), PDFs now include kerning in text strings.

Fully-fractional HiDPI (that is, HiDPI ratios that are not whole integers) was added in Qt 5.14, and is now supported by the QtAgg backend when using this version of Qt or newer.

The wxAgg backend supports toggling fullscreen using the f shortcut, or the manager function .FigureManagerBase.full_screen_toggle.