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 34
|
#!/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 10 equidistant bins from -3 to 3
h = bh.Histogram(
bh.axis.Regular(10, -3, 3, metadata="x"), bh.axis.Regular(10, -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(1000)
y_data = 0.5 * np.random.randn(1000)
# Fill histogram with numpy arrays, this is very fast
h.fill(x_data, y_data)
# Get representations of the bin edges as NumPy arrays
x = h.axes[0].edges
y = h.axes[1].edges
# Creates a view of the counts (no copy involved)
count_matrix = h.view()
# Draw the count matrix
plt.pcolor(x, y, count_matrix.T)
plt.xlabel(h.axes[0].metadata)
plt.ylabel(h.axes[1].metadata)
plt.savefig("simple_numpy.png")
|