Matplotlib Contour Graph上Color bar的Python Min和Max范围

时间:2016-10-31 07:47:48

标签: python matplotlib colors contour colorbar

我正在尝试编辑轮廓图上的颜色条范围从0到0.12,我尝试过一些东西,但它没有用。我一直保持全彩色条的范围,直到0.3,这不是我想要的。

这是我的代码:

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.tri as tri
triang = tri.Triangulation(x, y)

plt.tricontour(x, y, z, 15, colors='k')

plt.tricontourf(x, y, z, 15, cmap='Blues', vmin=0, vmax=0.12,\
                extend ='both')
plt.colorbar()

plt.clim(0,0.12)

plt.ylim (0.5,350)

plt.xlim(-87.5,87.5)

plt.show()

x,y,z是具有一列和大量行的所有数组

您可以在此处查看我的图表:

enter image description here

请帮忙!

1 个答案:

答案 0 :(得分:3)

我认为这个问题确实有效。 @ Fatma90:您需要提供一个工作示例,在您的情况下提供x,y,z。

无论如何,我们可以自己发明一些价值观。所以问题是,plt.tricontourf()忽略了vmin和vmax,我不知道任何好的解决方案。

但是,这是一种解决方法,手动设置levels

plt.tricontourf(x, y, z, levels=np.linspace(0,0.12,11), cmap='Blues' )

这里我们使用10个不同的级别,看起来很漂亮(如果使用不同数量的级别,问题可能是有很好的标记)。

我提供了一个工作示例来查看效果:

import numpy as np
import matplotlib.pyplot as plt

#random numbers for tricontourf plot
x = (np.random.ranf(100)-0.5)*2.
y = (np.random.ranf(100)-0.5)*2.
#uniform number grid for pcolor
X, Y = np.meshgrid(np.linspace(-1,1), np.linspace(-1,1))

z = lambda x,y : np.exp(-x**2 - y**2)*0.12

fig, ax = plt.subplots(2,1)

# tricontourf ignores the vmin, vmax, so we need to manually set the levels
# in this case we use 11-1=10 equally spaced levels.
im = ax[0].tricontourf(x, y, z(x,y), levels=np.linspace(0,0.12,11), cmap='Blues' )
# pcolor works as expected
im2 = ax[1].pcolor(z(X,Y), cmap='Blues', vmin=0, vmax=0.12 )

plt.colorbar(im, ax=ax[0])
plt.colorbar(im2, ax=ax[1])

for axis in ax:
    axis.set_yticks([])
    axis.set_xticks([])
plt.tight_layout()
plt.show()

这会产生

enter image description here