Sarebbe più utile se ponessi un esempio più completo funzionante (o in questo caso non funzionante).
Ho provato quanto segue:
import numpy as np
import matplotlib.pyplot as plt
x = np.random.randn(1000)
fig = plt.figure()
ax = fig.add_subplot(111)
n, bins, rectangles = ax.hist(x, 50, density=True)
fig.canvas.draw()
plt.show()
Questo produrrà effettivamente un istogramma del grafico a barre con un asse y che va da [0,1]
.
Inoltre, come da hist
documentazione (cioè ax.hist?
da ipython
), penso che anche la somma vada bene:
*normed*:
If *True*, the first element of the return tuple will
be the counts normalized to form a probability density, i.e.,
``n/(len(x)*dbin)``. In a probability density, the integral of
the histogram should be 1; you can verify that with a
trapezoidal integration of the probability density function::
pdf, bins, patches = ax.hist(...)
print np.sum(pdf * np.diff(bins))
Provando dopo i comandi sopra:
np.sum(n * np.diff(bins))
Ottengo un valore di ritorno 1.0
come previsto. Ricorda che normed=True
ciò non significa che la somma del valore su ciascuna barra sarà l'unità, ma piuttosto che l'integrale sulle barre è l'unità. Nel mio caso np.sum(n)
restituiti circa 7.2767
.