2-D histogram

plot 06 hist2d

Live figure — pick a tool, then zoom, pan, point-pick or annotate. Nothing is active until a tool is selected.

View this figure’s Vega export ↗ — the raw JSON spec, rendered live by a real Vega engine.

View this figure’s Vega-Lite export ↗ — the raw JSON spec(s), rendered live by a real Vega-Lite engine.

import numpy as np
import plotpress

rng = np.random.default_rng(6)
x = rng.normal(size=5000); y = x + rng.normal(size=5000)
fig, ax = plotpress.subplots()
counts, im = ax.hist2d(x, y, bins=40)
ax.set_title("hist2d"); fig.colorbar(im, ax=ax)

Total running time of the script: (0 minutes 0.072 seconds)

Gallery generated by Sphinx-Gallery