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 ? Programmation Python
Les compléments
Voir le programme détaillé
Classe « Axes »

Méthode matplotlib.axes.Axes.broken_barh

Signature de la méthode broken_barh

def broken_barh(self, xranges, yrange, *, data=None, **kwargs) 

Description

help(Axes.broken_barh)

Plot a horizontal sequence of rectangles.

A rectangle is drawn for each element of *xranges*. All rectangles
have the same vertical position and size defined by *yrange*.

Parameters
----------
xranges : sequence of tuples (*xmin*, *xwidth*)
    The x-positions and extents of the rectangles. For each tuple
    (*xmin*, *xwidth*) a rectangle is drawn from *xmin* to *xmin* +
    *xwidth*.
yrange : (*ymin*, *yheight*)
    The y-position and extent for all the rectangles.

Returns
-------
`~.collections.PolyCollection`

Other Parameters
----------------
data : indexable object, optional
    If given, all parameters also accept a string ``s``, which is
    interpreted as ``data[s]`` if ``s`` is a key in ``data``.
**kwargs : `.PolyCollection` properties

    Each *kwarg* can be either a single argument applying to all
    rectangles, e.g.::

        facecolors='black'

    or a sequence of arguments over which is cycled, e.g.::

        facecolors=('black', 'blue')

    would create interleaving black and blue rectangles.

    Supported keywords:

    Properties:
    agg_filter: a filter function, which takes a (m, n, 3) float array and a dpi value, and returns a (m, n, 3) array and two offsets from the bottom left corner of the image
    alpha: array-like or scalar or None
    animated: bool
    antialiased or aa or antialiaseds: bool or list of bools
    array: array-like or None
    capstyle: `.CapStyle` or {'butt', 'projecting', 'round'}
    clim: (vmin: float, vmax: float)
    clip_box: `~matplotlib.transforms.BboxBase` or None
    clip_on: bool
    clip_path: Patch or (Path, Transform) or None
    cmap: `.Colormap` or str or None
    color: :mpltype:`color` or list of RGBA tuples
    edgecolor or ec or edgecolors: :mpltype:`color` or list of :mpltype:`color` or 'face'
    facecolor or facecolors or fc: :mpltype:`color` or list of :mpltype:`color`
    figure: `~matplotlib.figure.Figure` or `~matplotlib.figure.SubFigure`
    gid: str
    hatch: {'/', '\\', '|', '-', '+', 'x', 'o', 'O', '.', '*'}
    hatch_linewidth: unknown
    in_layout: bool
    joinstyle: `.JoinStyle` or {'miter', 'round', 'bevel'}
    label: object
    linestyle or dashes or linestyles or ls: str or tuple or list thereof
    linewidth or linewidths or lw: float or list of floats
    mouseover: bool
    norm: `.Normalize` or str or None
    offset_transform or transOffset: `.Transform`
    offsets: (N, 2) or (2,) array-like
    path_effects: list of `.AbstractPathEffect`
    paths: list of array-like
    picker: None or bool or float or callable
    pickradius: float
    rasterized: bool
    sizes: `numpy.ndarray` or None
    sketch_params: (scale: float, length: float, randomness: float)
    snap: bool or None
    transform: `~matplotlib.transforms.Transform`
    url: str
    urls: list of str or None
    verts: list of array-like
    verts_and_codes: unknown
    visible: bool
    zorder: float


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