1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
#!/usr/bin/env python3
from __future__ import annotations
import matplotlib.pyplot as plt
import numpy as np
import boost_histogram as bh
# Create 2d-histogram with two axes with 20 equidistant bins from -3 to 3
h = bh.Histogram(
bh.axis.Regular(20, -3, 3, metadata="x"), bh.axis.Regular(20, -3, 3, metadata="y")
)
# Generate some NumPy arrays with data to fill into histogram,
# in this case normal distributed random numbers in x and y
x_data = np.random.randn(1_000)
y_data = 0.5 * np.random.randn(1_000)
# Fill histogram with NumPy arrays, this is very fast
h.fill(x_data, y_data)
# Get numpy.histogram compatible representation of the histogram
w, x, y = h.to_numpy()
# Draw the count matrix
fig, ax = plt.subplots()
ax.pcolormesh(x, y, w.T)
ax.set_xlabel(h.axes[0].metadata)
ax.set_ylabel(h.axes[1].metadata)
ax.set_aspect("equal")
plt.savefig("simple_2d.png")
|