gpt4 book ai didi

python - Matplotlib colorbar - 更改了限制行为

转载 作者:行者123 更新时间:2023-11-28 18:58:33 24 4
gpt4 key购买 nike

我尝试使用 matplotlib 限制颜色条的范围。旧的行为是,可以使用 plot 函数的 vminvmax 关键字来缩放颜色条。这会影响颜色本身和颜色条的标签。

现在的行为似乎是,只有颜色被缩放,而标签仍然是自动的。

import numpy
import numpy.random
import matplotlib.pyplot as plt

# create somehing to plot, maximum value should be much large than 10
z = numpy.random.rand(20, 20) * 57.8412
t = numpy.linspace(0, 1, 20)
x, y = numpy.meshgrid(t, t)

# this is supposed to be the maximum value of the plot
max_value = 25 # or 100

fig = plt.figure()
axis = fig.add_subplot(1, 1, 1)

plot = axis.contourf(x, y, z, 100, cmap=None, vmin=0, vmax=max_value)
cbar = plt.colorbar(plot)

plt.show(block=False)

两张图片的颜色条标签保持相同(最多 58 个),即使第一张图片的最大值应为 25,第二张图片的最大值应为 100。

如何恢复保持行为并缩放颜色条的标签。

max_value = 100

max_value = 25

最佳答案

我不确定我是否理解期望的结果,但我认为您会想要明确设置级别。

import numpy as np
import matplotlib.pyplot as plt

# create somehing to plot, maximum value should be much large than 10
z = np.random.rand(20, 20) * 57.8412
t = np.linspace(0, 1, 20)
x, y = np.meshgrid(t, t)

# this is supposed to be the maximum value of the plot
max_value = 25 # or 100

fig, ax = plt.subplots()
ax.set_title(f"max_value={max_value}")
cntr = ax.contourf(x, y, z, levels=np.arange(max_value+1), vmin=0, vmax=max_value)
cbar = fig.colorbar(cntr)

plt.show()

enter image description here

enter image description here

关于python - Matplotlib colorbar - 更改了限制行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55481298/

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