Было бы более полезно, если бы вы привели более полный рабочий (или в данном случае нерабочий) пример.
Я пробовал следующее:
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()
Это действительно создаст гистограмму гистограммы с осью Y, идущей от [0,1]
.
Кроме того, согласно hist
документации (т.е. ax.hist?
от ipython
), я думаю, что сумма тоже в порядке:
*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))
Попробуйте это после приведенных выше команд:
np.sum(n * np.diff(bins))
Я получаю 1.0
ожидаемое возвращаемое значение . Помните, что normed=True
это не означает, что сумма значений на каждом столбце будет равна единице, скорее, чем интеграл по столбцам будет равен единице. В моем случае np.sum(n)
вернули ок 7.2767
.