| 2664 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |
| 2665 | @_autogen_docstring(Axes.hist2d) |
| 2666 | def hist2d( |
| 2667 | x, y, bins=10, range=None, normed=False, weights=None, |
| 2668 | cmin=None, cmax=None, *, data=None, **kwargs): |
| 2669 | __ret = gca().hist2d( |
| 2670 | x, y, bins=bins, range=range, normed=normed, weights=weights, |
| 2671 | cmin=cmin, cmax=cmax, **({"data": data} if data is not None |
| 2672 | else {}), **kwargs) |
| 2673 | sci(__ret[-1]) |
| 2674 | return __ret |
| 2675 | |
| 2676 | |
| 2677 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |