如何在 Matplotlib 中刷新文本?
matplotlibpythondata visualization
要刷新 Matplotlib 中的文本,我们可以采取以下步骤 −
- 设置图形大小并调整子图之间和周围的填充。
- 创建一个图形和一组子图。
- 向轴添加文本。
- 编写自定义方法根据键"z"更新文本和"c"。
- 将函数动作与key_press_event绑定。
- 绘制包含图形的画布。
- 使用文本为图形设置动画。
- 要显示图形,请使用show()方法。
示例
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): 如果 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()