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

Function pcolor

lib/matplotlib/pyplot.py:3880–3905  ·  view source on GitHub ↗
(
    *args: ArrayLike,
    shading: Literal["flat", "nearest", "auto"] | None = None,
    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,
    data: DataParamType = None,
    **kwargs,
)

Source from the content-addressed store, hash-verified

3878# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
3879@_copy_docstring_and_deprecators(Axes.pcolor)
3880def pcolor(
3881 *args: ArrayLike,
3882 shading: Literal["flat", "nearest", "auto"] | None = None,
3883 alpha: float | None = None,
3884 norm: str | Normalize | None = None,
3885 cmap: str | Colormap | None = None,
3886 vmin: float | None = None,
3887 vmax: float | None = None,
3888 colorizer: Colorizer | None = None,
3889 data: DataParamType = None,
3890 **kwargs,
3891) -> Collection:
3892 __ret = gca().pcolor(
3893 *args,
3894 shading=shading,
3895 alpha=alpha,
3896 norm=norm,
3897 cmap=cmap,
3898 vmin=vmin,
3899 vmax=vmax,
3900 colorizer=colorizer,
3901 **({"data": data} if data is not None else {}),
3902 **kwargs,
3903 )
3904 sci(__ret)
3905 return __ret
3906
3907
3908# 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
pcolorMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…