gpt4 book ai didi

python - 如何在 Matplotlib 中为文本设置动画?

转载 作者:行者123 更新时间:2023-12-03 16:43:33 25 4
gpt4 key购买 nike

我正在尝试为 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 = ax.text(.5, .5, '', fontsize=15)


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

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

最佳答案

文本是 artist并且您可以像任何其他动画一样对其进行动画处理 artist :

def updatefig(num):
time_text.set_text(times[num])
return time_text,

关于python - 如何在 Matplotlib 中为文本设置动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18274137/

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