(
*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,
)
| 3908 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |
| 3909 | @_copy_docstring_and_deprecators(Axes.pcolormesh) |
| 3910 | def 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. |
nothing calls this directly
no test coverage detected
searching dependent graphs…