Python colorbar规模

时间:2014-07-24 07:25:14

标签: python matplotlib colorbar

我对matplotlib的colorbar有疑问。我有一个表面图,工作正常,颜色使用正确。但不知何故,我的色条的比例搞砸了。我认为它应该从0到0.4 。但是实际的代码给了我 0到0.16 。我在这里错过了什么?奇怪的是0.16的值是0.4的平方。

这是我的情节: enter image description here

当然,这是我的代码:

values_all = zip(*values_all)
x = range(len(values_all[0]))
y = range(len(values_all))
figure = plt.figure(1, figsize=(10, 7))
ax = Axes3D(figure, azim=-124, elev=40, zlim=(0, 0.4))
x, y = np.meshgrid(x, y)
surface = ax.plot_surface(x, y, values_all, linewidth=0, rstride=1, cstride=1, cmap=cm.jet)
plt.colorbar(surface, shrink=0.4, aspect=10)
plt.show()

如果我按照以下方式编辑代码,则会正确缩放颜色条,但图表本身不再正确显示:

surface = ax.plot_surface(x, y, values_all, linewidth=0, rstride=1, cstride=1, cmap=cm.jet,vmin=0,vmax=0.4)

结果: enter image description here

使用其他样本数据,您可以看到这不仅是绘图边界的问题(给出奇怪峰值的值在0.3-0.35之间):

enter image description here

0 个答案:

没有答案