gpt4 book ai didi

python - 如何切换 matplotlib 图形的可见性?

转载 作者:行者123 更新时间:2023-12-04 18:05:48 26 4
gpt4 key购买 nike

有没有办法让 matplotlib 图形消失并重新出现以响应某些事件? (即按键)

我试过使用 fig.set_visible(False) 但这似乎对我没有任何作用。

简单的代码示例:

import matplotlib
import matplotlib.pyplot as plt

fig=matplotlib.pyplot.figure(figsize=(10, 10))

# Some other code will go here

def toggle_plot():
# This function is called by a keypress to hide/show the figure
fig.set_visible(not fig.get_visible()) # This doesn't work for me

plt.show()

我尝试这样做的原因是因为我在图中运行了一堆绘图/动画,它们显示了正在运行的模拟的输出,但是一直显示它们会大大降低我的计算机的速度。
有任何想法吗?

最佳答案

您必须调用 plt.draw() 来实际实例化任何更改。这应该有效:

def toggle_plot():
# This function is called by a keypress to hide/show the figure
fig.set_visible(not fig.get_visible())
plt.draw()

关于python - 如何切换 matplotlib 图形的可见性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28463479/

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