当前位置: 代码迷 >> python >> 如何更新动画 matplotlib 图中的刻度标签
  详细解决方案

如何更新动画 matplotlib 图中的刻度标签

热度:97   发布时间:2023-06-16 10:14:39.0

一旦在动画图形中更改,如何让刻度标签更新? 这只是我需要的一个简单示例。 我意识到我可以设置blit=False并让它工作,但是我正在处理的项目出于性能原因需要blit=True

import matplotlib
matplotlib.use('Qt4Agg')
import matplotlib.pyplot as plt
import numpy as np
import matplotlib.animation as animation
import time

fig, ax = plt.subplots()

x = np.arange(0, 2*np.pi, 0.01)
line, = ax.plot(x, np.sin(x))


def animate(i):
    line.set_ydata(np.sin(x + i/10.0))

    if i > 30:
        ax.tick_params(axis='y', colors='red')  ### How do I get my graph to reflect this change?
    return line,


def init():
    line.set_ydata(np.ma.array(x, mask=True))
    return line,

ani = animation.FuncAnimation(fig, animate, np.arange(1, 200), init_func=init,
                          interval=100, blit=True)
plt.show()

我让它与建议的猴子补丁一起工作

希望这对花了很多时间试图解决这个问题的流浪灵魂(像我一样)有用。