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

Function hexbin

site-packages/matplotlib/pyplot.py:2631–2645  ·  view source on GitHub ↗
(
        x, y, C=None, gridsize=100, bins=None, xscale='linear',
        yscale='linear', extent=None, cmap=None, norm=None, vmin=None,
        vmax=None, alpha=None, linewidths=None, edgecolors='face',
        reduce_C_function=np.mean, mincnt=None, marginals=False, *,
        data=None, **kwargs)

Source from the content-addressed store, hash-verified

2629# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2630@_autogen_docstring(Axes.hexbin)
2631def hexbin(
2632 x, y, C=None, gridsize=100, bins=None, xscale='linear',
2633 yscale='linear', extent=None, cmap=None, norm=None, vmin=None,
2634 vmax=None, alpha=None, linewidths=None, edgecolors='face',
2635 reduce_C_function=np.mean, mincnt=None, marginals=False, *,
2636 data=None, **kwargs):
2637 __ret = gca().hexbin(
2638 x, y, C=C, gridsize=gridsize, bins=bins, xscale=xscale,
2639 yscale=yscale, extent=extent, cmap=cmap, norm=norm, vmin=vmin,
2640 vmax=vmax, alpha=alpha, linewidths=linewidths,
2641 edgecolors=edgecolors, reduce_C_function=reduce_C_function,
2642 mincnt=mincnt, marginals=marginals, **({"data": data} if data
2643 is not None else {}), **kwargs)
2644 sci(__ret)
2645 return __ret
2646
2647
2648# 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
hexbinMethod · 0.45

Tested by

no test coverage detected