This might sound trivial, but I am unable find a solution in PYTHON. No problem in ROOT or MATLAB.
So, I have a 3x3 array, and I would like each element in the array to represent the height (frequency) of a bin. I should have a histogram with 9 bins. Here's an example of what I have been trying.
import numpy as np
import matplotlib.pyplot as plt
H = np.array([[21,33,6],[25,20,2],[80,40,0]])
hist, bin = np.histogramdd(H, bins=3)
center = 0.5*(bin[:-1] + bin[1:])
plt.bar(center, hist)
plt.show()
I've tried histogram2D, I just can't find any to get this to work with PYTHON. Thanks in advance for any help on this.