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 ? Calcul scientifique
avec Python
Voir le programme détaillé
Classe « Artist »

Méthode matplotlib.artist.Artist.findobj

Signature de la méthode findobj

def findobj(self, match=None, include_self=True) 

Description

help(Artist.findobj)

Find artist objects.

Recursively find all `.Artist` instances contained in the artist.

Parameters
----------
match
    A filter criterion for the matches. This can be

    - *None*: Return all objects contained in artist.
    - A function with signature ``def match(artist: Artist) -> bool``.
      The result will only contain artists for which the function
      returns *True*.
    - A class instance: e.g., `.Line2D`. The result will only contain
      artists of this class or its subclasses (``isinstance`` check).

include_self : bool
    Include *self* in the list to be checked for a match.

Returns
-------
list of `.Artist`



Vous êtes un professionnel et vous avez besoin d'une formation ? Sensibilisation à
l'Intelligence Artificielle
Voir le programme détaillé