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

Function pcolormesh

lib/matplotlib/pyplot.py:3910–3937  ·  view source on GitHub ↗
(
    *args: ArrayLike,
    alpha: float | None = None,
    norm: str | Normalize | None = None,
    cmap: str | Colormap | None = None,
    vmin: float | None = None,
    vmax: float | None = None,
    colorizer: Colorizer | None = None,
    shading: Literal["flat", "nearest", "gouraud", "auto"] | None = None,
    antialiased: bool = False,
    data: DataParamType = None,
    **kwargs,
)

Source from the content-addressed store, hash-verified

3908# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
3909@_copy_docstring_and_deprecators(Axes.pcolormesh)
3910def pcolormesh(
3911 *args: ArrayLike,
3912 alpha: float | None = None,
3913 norm: str | Normalize | None = None,
3914 cmap: str | Colormap | None = None,
3915 vmin: float | None = None,
3916 vmax: float | None = None,
3917 colorizer: Colorizer | None = None,
3918 shading: Literal["flat", "nearest", "gouraud", "auto"] | None = None,
3919 antialiased: bool = False,
3920 data: DataParamType = None,
3921 **kwargs,
3922) -> QuadMesh:
3923 __ret = gca().pcolormesh(
3924 *args,
3925 alpha=alpha,
3926 norm=norm,
3927 cmap=cmap,
3928 vmin=vmin,
3929 vmax=vmax,
3930 colorizer=colorizer,
3931 shading=shading,
3932 antialiased=antialiased,
3933 **({"data": data} if data is not None else {}),
3934 **kwargs,
3935 )
3936 sci(__ret)
3937 return __ret
3938
3939
3940# Autogenerated by boilerplate.py. Do not edit as changes will be lost.

Callers

nothing calls this directly

Calls 3

gcaFunction · 0.85
sciFunction · 0.85
pcolormeshMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…