我有一个 pcolormesh
图,其中通过将 vmin
和 vmax
设置为严格在绘制的值范围内来裁剪颜色图。有没有办法让关联的 colorbar
从底部和顶部分离一个块来表示相关颜色在颜色图的范围之外?
最佳答案
是的,你需要对colorbar使用extend = both
关键字,然后为pcolormesh对象的colormap设置over和under颜色
import matplotlib.pyplot as plt
import numpy as np
data=np.random.rand(10,10)
fig=plt.figure()
ax=fig.add_subplot(111)
p=ax.pcolormesh(data,vmin=0.2,vmax=0.8,cmap='gray')
p.cmap.set_over('red')
p.cmap.set_under('blue')
fig.colorbar(p,extend='both')
plt.show()
关于python - 区分 `colorbar` 中的剪切值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32072198/