MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / fill_between

Function fill_between

lib/matplotlib/pyplot.py:3496–3516  ·  view source on GitHub ↗
(
    x: ArrayLike,
    y1: ArrayLike | float,
    y2: ArrayLike | float = 0,
    where: Sequence[bool] | None = None,
    interpolate: bool = False,
    step: Literal["pre", "post", "mid"] | None = None,
    *,
    data: DataParamType = None,
    **kwargs,
)

Source from the content-addressed store, hash-verified

3494# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
3495@_copy_docstring_and_deprecators(Axes.fill_between)
3496def fill_between(
3497 x: ArrayLike,
3498 y1: ArrayLike | float,
3499 y2: ArrayLike | float = 0,
3500 where: Sequence[bool] | None = None,
3501 interpolate: bool = False,
3502 step: Literal["pre", "post", "mid"] | None = None,
3503 *,
3504 data: DataParamType = None,
3505 **kwargs,
3506) -> FillBetweenPolyCollection:
3507 return gca().fill_between(
3508 x,
3509 y1,
3510 y2=y2,
3511 where=where,
3512 interpolate=interpolate,
3513 step=step,
3514 **({"data": data} if data is not None else {}),
3515 **kwargs,
3516 )
3517
3518
3519# Autogenerated by boilerplate.py. Do not edit as changes will be lost.

Callers

nothing calls this directly

Calls 2

gcaFunction · 0.85
fill_betweenMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…