Как анимировать текст в matplotlib?

Я пытаюсь анимировать текстовое поле в виде рисунка matplotlib, но не могу заставить его работать. Кто-нибудь знает, как сделать это правильно? Пример ниже.

from matplotlib import animation
import matplotlib.pyplot as plt
import numpy as np
from mpl_toolkits.basemap import Basemap

fig = plt.figure()
ax = fig.add_subplot(111)

times = ['first', 'second', 'third']

time_text = text(.5, .5, '', fontsize=15)


def updatefig(num):
    global mt
    mt = text(.5, .5, times[num], fontsize=15)

anim = animation.FuncAnimation(fig, updatefig, frames=len(times)-1, blit=True, init_func=init)

1 ответ

Решение

Текст является artist и ты оживляешь это точно так же, как любой другой artist:

def updatefig(num):
    time_text.set_text(times[num])
    return time_text,
Другие вопросы по тегам