我有 5 个点 (x,y) 并使用 matplotlib 的 histogram2d 函数创建一个热图,显示不同颜色表示每个 bin 的密度。我怎样才能获得垃圾箱中点数的频率?
import numpy as np
import numpy.random
import pylab as pl
import matplotlib.pyplot as plt
x = [.3, -.3, -.3, .3, .3]
y = [.3, .3, -.3, -.3, -.4]
heatmap, xedges, yedges = np.histogram2d(x, y, bins=4)
extent = [xedges[0], xedges[-1], yedges[0], yedges[-1]]
plt.clf()
plt.imshow(heatmap, extent=extent)
plt.show()
pl.scatter(x,y)
pl.show()
因此,使用 4 个 bin,我希望每个 bin 中的频率为 .2、.2、.2 和 .4