Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Vous êtes un professionnel et vous avez besoin d'une formation ? Mise en oeuvre d'IHM
avec Qt et PySide6
Voir le programme détaillé
Classe « FigureBase »

Méthode matplotlib.pyplot.FigureBase.align_xlabels

Signature de la méthode align_xlabels

def align_xlabels(self, axs=None) 

Description

help(FigureBase.align_xlabels)

Align the xlabels of subplots in the same subplot row if label
alignment is being done automatically (i.e. the label position is
not manually set).

Alignment persists for draw events after this is called.

If a label is on the bottom, it is aligned with labels on Axes that
also have their label on the bottom and that have the same
bottom-most subplot row.  If the label is on the top,
it is aligned with labels on Axes with the same top-most row.

Parameters
----------
axs : list of `~matplotlib.axes.Axes`
    Optional list of (or `~numpy.ndarray`) `~matplotlib.axes.Axes`
    to align the xlabels.
    Default is to align all Axes on the figure.

See Also
--------
matplotlib.figure.Figure.align_ylabels
matplotlib.figure.Figure.align_titles
matplotlib.figure.Figure.align_labels

Notes
-----
This assumes that all Axes in ``axs`` are from the same `.GridSpec`,
so that their `.SubplotSpec` positions correspond to figure positions.

Examples
--------
Example with rotated xtick labels::

    fig, axs = plt.subplots(1, 2)
    for tick in axs[0].get_xticklabels():
        tick.set_rotation(55)
    axs[0].set_xlabel('XLabel 0')
    axs[1].set_xlabel('XLabel 1')
    fig.align_xlabels()


Vous êtes un professionnel et vous avez besoin d'une formation ? Calcul scientifique
avec Python
Voir le programme détaillé