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

时间:2017-02-15 19:49:57

标签: python matplotlib

如何在动画图表中更改后更新刻度标签? 这只是我需要的一个简单例子。我意识到我可以设置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()

1 个答案:

答案 0 :(得分:0)

我使用了建议in this post.

的猴子补丁

希望这适用于花费大量时间来解决这个问题的流浪灵魂(链接我)。