Can one explain why after estimation of kernel density
d = gaussian_kde(g[:,1])
And calculation of integral sum of it:
x = np.linspace(0, g[:,1].max(), 1500)
integral = np.trapz(d(x), x)
I got resulting integral sum completely different to 1:
print integral
Out: 0.55618