MCPcopy Create free account
hub / github.com/ColdGrub1384/Pyto / hist2d

Function hist2d

site-packages/matplotlib/pyplot.py:2666–2674  ·  view source on GitHub ↗
(
        x, y, bins=10, range=None, normed=False, weights=None,
        cmin=None, cmax=None, *, data=None, **kwargs)

Source from the content-addressed store, hash-verified

2664# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2665@_autogen_docstring(Axes.hist2d)
2666def 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.

Callers

nothing calls this directly

Calls 3

gcaFunction · 0.85
sciFunction · 0.85
hist2dMethod · 0.80

Tested by

no test coverage detected