(
*args, alpha=None, norm=None, cmap=None, vmin=None,
vmax=None, shading='flat', antialiased=False, data=None,
**kwargs)
| 2766 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |
| 2767 | @_autogen_docstring(Axes.pcolormesh) |
| 2768 | def pcolormesh( |
| 2769 | *args, alpha=None, norm=None, cmap=None, vmin=None, |
| 2770 | vmax=None, shading='flat', antialiased=False, data=None, |
| 2771 | **kwargs): |
| 2772 | __ret = gca().pcolormesh( |
| 2773 | *args, alpha=alpha, norm=norm, cmap=cmap, vmin=vmin, |
| 2774 | vmax=vmax, shading=shading, antialiased=antialiased, |
| 2775 | **({"data": data} if data is not None else {}), **kwargs) |
| 2776 | sci(__ret) |
| 2777 | return __ret |
| 2778 | |
| 2779 | |
| 2780 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |
nothing calls this directly
no test coverage detected