1

我可以生成这样的 hexbin 图(代码取自http://matplotlib.org/examples/pylab_examples/hexbin_demo.html

import numpy as np
import matplotlib.cm as cm
import  matplotlib.pyplot as plt

n = 100000
x = np.random.standard_normal(n)
y = 2.0 + 3.0 * x + 4.0 * np.random.standard_normal(n)
xmin = x.min()
xmax = x.max()
ymin = y.min()
ymax = y.max()

plt.subplots_adjust(hspace=0.5)
plt.subplot(121)
plt.hexbin(x,y, cmap=cm.jet)
plt.axis([xmin, xmax, ymin, ymax])
plt.title("Hexagon binning")
cb = plt.colorbar()
cb.set_label('counts')

plt.subplot(122)
plt.hexbin(x,y,bins='log', cmap=cm.jet)
plt.axis([xmin, xmax, ymin, ymax])
plt.title("With a log color scale")
cb = plt.colorbar()
cb.set_label('log10(N)')

plt.show()

有没有办法用轴名称标记 hexbin 的 x 和 y 轴?我希望“x-label”之类的内容显示在 x 轴编号下方,而“ylabel”显示在 y 轴编号的左侧。这将是颜色条上标签的补充。

4

1 回答 1

1

您可以使用xlabelylabelmatplotlib 命令:

plt.xlabel('x-label')
plt.ylabel('y-label')
于 2012-09-13T00:55:04.273 回答