gpt4 book ai didi

python - 如何检查图形上是否存在颜色条

转载 作者:太空狗 更新时间:2023-10-29 22:21:18 25 4
gpt4 key购买 nike

问题:有没有办法检查颜色条是否已经存在?

我正在用循环制作许多图。问题是每次迭代都会绘制颜色条!

enter image description here

如果我可以确定颜色条是否存在,那么我可以将颜色条函数放在 if 语句中。

if cb_exists:
# do nothing
else:
plt.colorbar() #draw the colorbar

如果我使用 multiprocessing 制作图形,是否可以防止添加多个颜色条?

import numpy as np
import matplotlib.pyplot as plt
import multiprocessing

def plot(number):
a = np.random.random([5,5])*number
plt.pcolormesh(a)
plt.colorbar()
plt.savefig('this_'+str(number))

# I want to make a 50 plots
some_list = range(0,50)
num_proc = 5
p = multiprocessing.Pool(num_proc)
temps = p.map(plot, some_list)

enter image description here

我意识到我可以在绘制下一次迭代之前使用 plt.clf() 和 plt.cla() 清除图形。但是,我的 basemap 图层上有我不想重新绘制的数据(这会增加创建绘图所需的时间)。所以,如果我可以删除颜色栏并添加一个新的颜色栏,我会节省一些时间。

最佳答案

从绘图中删除颜色条并稍后为其绘制新颜色条实际上并不容易。我目前能想到的最佳解决方案如下,它假设图中只有一个轴。现在,如果有第二个轴,它一定是存在的颜色条。因此,通过检查我们在图上找到了多少个轴,我们可以判断是否有颜色条

这里我们也考虑到用户不希望从外部引用任何命名对象的愿望。 (这没有多大意义,因为无论如何我们都需要使用 plt,但是嘿..问题是这样的)

import matplotlib.pyplot as plt
import numpy as np

fig, ax = plt.subplots()
im = ax.pcolormesh(np.array(np.random.rand(2,2) ))
ax.plot(np.cos(np.linspace(0.2,1.8))+0.9, np.sin(np.linspace(0.2,1.8))+0.9, c="k", lw=6)
ax.set_title("Title")
cbar = plt.colorbar(im)
cbar.ax.set_ylabel("Label")


for i in range(10):
# inside this loop we should not access any variables defined outside
# why? no real reason, but questioner asked for it.
#draw new colormesh
im = plt.gcf().gca().pcolormesh(np.random.rand(2,2))
#check if there is more than one axes
if len(plt.gcf().axes) > 1:
# if so, then the last axes must be the colorbar.
# we get its extent
pts = plt.gcf().axes[-1].get_position().get_points()
# and its label
label = plt.gcf().axes[-1].get_ylabel()
# and then remove the axes
plt.gcf().axes[-1].remove()
# then we draw a new axes a the extents of the old one
cax= plt.gcf().add_axes([pts[0][0],pts[0][1],pts[1][0]-pts[0][0],pts[1][1]-pts[0][1] ])
# and add a colorbar to it
cbar = plt.colorbar(im, cax=cax)
cbar.ax.set_ylabel(label)
# unfortunately the aspect is different between the initial call to colorbar
# without cax argument. Try to reset it (but still it's somehow different)
cbar.ax.set_aspect(20)
else:
plt.colorbar(im)

plt.show()

一般来说,更好的解决方案是对图中已经存在的对象进行操作,并且只用新数据更新它们。因此,我们无需删除和添加轴,并找到更清洁、更快速的解决方案。

import matplotlib.pyplot as plt
import numpy as np

fig, ax = plt.subplots()
im = ax.pcolormesh(np.array(np.random.rand(2,2) ))
ax.plot(np.cos(np.linspace(0.2,1.8))+0.9, np.sin(np.linspace(0.2,1.8))+0.9, c="k", lw=6)
ax.set_title("Title")
cbar = plt.colorbar(im)
cbar.ax.set_ylabel("Label")


for i in range(10):
data = np.array(np.random.rand(2,2) )
im.set_array(data.flatten())
cbar.set_clim(vmin=data.min(),vmax=data.max())
cbar.draw_all()
plt.draw()

plt.show()


更新:

实际上,后一种从外部引用对象的方法甚至可以与提问者所需的multiprocess 方法一起工作。

因此,这是一个更新图形的代码,无需删除颜色条。

import matplotlib.pyplot as plt
import numpy as np
import multiprocessing
import time

fig, ax = plt.subplots()
im = ax.pcolormesh(np.array(np.random.rand(2,2) ))
ax.plot(np.cos(np.linspace(0.2,1.8))+0.9, np.sin(np.linspace(0.2,1.8))+0.9, c="w", lw=6)
ax.set_title("Title")
cbar = plt.colorbar(im)
cbar.ax.set_ylabel("Label")
tx = ax.text(0.2,0.8, "", fontsize=30, color="w")
tx2 = ax.text(0.2,0.2, "", fontsize=30, color="w")

def do(number):
start = time.time()
tx.set_text(str(number))
data = np.array(np.random.rand(2,2)*(number+1) )
im.set_array(data.flatten())
cbar.set_clim(vmin=data.min(),vmax=data.max())
tx2.set_text("{m:.2f} < {ma:.2f}".format(m=data.min(), ma= data.max() ))
cbar.draw_all()
plt.draw()
plt.savefig("multiproc/{n}.png".format(n=number))
stop = time.time()

return np.array([number, start, stop])


if __name__ == "__main__":
multiprocessing.freeze_support()

some_list = range(0,50)
num_proc = 5
p = multiprocessing.Pool(num_proc)
nu = p.map(do, some_list)
nu = np.array(nu)

plt.close("all")
fig, ax = plt.subplots(figsize=(16,9))
ax.barh(nu[:,0], nu[:,2]-nu[:,1], height=np.ones(len(some_list)), left=nu[:,1], align="center")
plt.show()

(最后的代码显示了一个时间表,可以看到确实发生了多处理)

关于python - 如何检查图形上是否存在颜色条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40771464/

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