Matplotlib:如何设置使用hexbin创建的bin的大小?我遇到的问题是箱子太小了,所以图形看起来有些奇怪。
答案 0 :(得分:2)
使用pylab_examples example code: hexbin_demo.py,您可以轻松使用所有可选参数来查看它们如何影响同一数据集。以下是gridsize
的作用:
我只是复制并粘贴了演示中的代码(包括数据创建部分),然后为这个相同的参数制作了具有不同值的子图
plt.subplots_adjust(hspace=0.5)
plt.subplot(132)
plt.hexbin(x, y, cmap=plt.cm.YlOrRd_r)
plt.axis([xmin, xmax, ymin, ymax])
plt.title("Gridsize 100 (default)")
cb = plt.colorbar()
cb.set_label('counts')
plt.subplot(133)
plt.hexbin(x, y, cmap=plt.cm.YlOrRd_r, gridsize = 200)
plt.axis([xmin, xmax, ymin, ymax])
plt.title("Gridsize 200")
cb = plt.colorbar()
cb.set_label('counts')
plt.subplot(131)
plt.hexbin(x, y, cmap=plt.cm.YlOrRd_r, gridsize = 10)
plt.axis([xmin, xmax, ymin, ymax])
plt.title("Gridsize 10")
cb = plt.colorbar()
cb.set_label('counts')
plt.show()
plt.close()