can anybody, please, help me to understand the ouput of this code?? I want simply to obtain an histogram with the specified bin edges and bin frequency values.
edges=np.array([106,150,212,300,425,600,850,875])
freq=np.array([0.02,0.15,16.55,41.19,27.18,11.72,1.97])
plt.hist(freq,bins=edges)
plt.show()

