如何在Matplotlib中刷新文本?
要在Matplotlib中刷新文本,可以按以下步骤进行 –
- 设置图形大小并调整子图之间和周围的填充。
- 创建图形和一组子图。
- 将文本添加到坐标轴中。
- 编写自定义方法以根据键“z”和“c”更新文本。
- 将函数动作与 key_press_event 绑定。
- 绘制包含图形的画布。
- 使用文本动画。
- 要显示图形,请使用 show() 方法。
更多Matplotlib教程,请访问:Matplotlib教程
示例
from matplotlib import pyplot as plt, animation
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
fig, ax = plt.subplots()
text = ax.text(.5, .5, 'First Text')
def action(event):
if event.key == "z":
text.set_text("zoom")
elif event.key == "c":
text.set_text("cool")
fig.canvas.mpl_connect('key_press_event', action)
fig.canvas.draw()
animation = animation.ArtistAnimation(fig, [(text,)])
plt.show()