gpt4 book ai didi

python - 设置 matplotlib colorbar 范围(比绘制的值范围更大)

转载 作者:太空宇宙 更新时间:2023-11-03 13:11:29 38 4
gpt4 key购买 nike

我想绘制一些数据(0 到 18 之间),但我希望颜色栏显示 0 到 40 之间的范围。在看了几个在线示例之后,我不知道如何实现我需要的东西!

这是一个简单的例子:

import matplotlib.pyplot as plt
import numpy as np

rd = np.random.rand(40,100) # random samples from a uniform distribution over [0, 1]
surface = 18 * rd # maximum value will be 18

fig = plt.figure()
ax = fig.add_subplot(111)
cores = ax.contourf(surface[:], vmin=0, vmax=40)

cbar = plt.colorbar(cores)

我也试过这个:

cbar = plt.colorbar(cores, extend='both', extendrect=True)
cbar.set_clim(0, 40.)

但我一直得到相同的图像,颜色条从 0 到 20 不等!我知道我可以使用 set_over 方法,但我不想获得单一颜色...我想要我的整个颜色范围(如 cores 中所定义,从0 到 40) 出现!

enter image description here

感谢您的帮助!

最佳答案

终于解决了。我必须传递一个关键字来控制要绘制的级别,而不是 vminvmax,如下所示:

import matplotlib.pyplot as plt
import numpy as np

rd = np.random.rand(40,100)
surface = 18 * rd # maximum value will be 18

fig = plt.figure()
ax = fig.add_subplot(111)

cores = ax.contourf(surface[:], levels=range(41))
cbar = plt.colorbar(cores)

plt.show()

我得到了我想要的图像: enter image description here

关于python - 设置 matplotlib colorbar 范围(比绘制的值范围更大),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42723538/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com