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 ? RAG (Retrieval-Augmented Generation)
et Fine Tuning d'un LLM
Voir le programme détaillé
Classe « Axes »

Méthode matplotlib.pyplot.Axes.fill

Signature de la méthode fill

def fill(self, *args, data=None, **kwargs) 

Description

help(Axes.fill)

Plot filled polygons.

Parameters
----------
*args : sequence of x, y, [color]
    Each polygon is defined by the lists of *x* and *y* positions of
    its nodes, optionally followed by a *color* specifier. See
    :mod:`matplotlib.colors` for supported color specifiers. The
    standard color cycle is used for polygons without a color
    specifier.

    You can plot multiple polygons by providing multiple *x*, *y*,
    *[color]* groups.

    For example, each of the following is legal::

        ax.fill(x, y)                    # a polygon with default color
        ax.fill(x, y, "b")               # a blue polygon
        ax.fill(x, y, x2, y2)            # two polygons
        ax.fill(x, y, "b", x2, y2, "r")  # a blue and a red polygon

data : indexable object, optional
    An object with labelled data. If given, provide the label names to
    plot in *x* and *y*, e.g.::

        ax.fill("time", "signal",
                data={"time": [0, 1, 2], "signal": [0, 1, 0]})

Returns
-------
list of `~matplotlib.patches.Polygon`

Other Parameters
----------------
**kwargs : `~matplotlib.patches.Polygon` properties

Notes
-----
Use :meth:`fill_between` if you would like to fill the region between
two curves.


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é