如何在 Matplotlib 中刷新文本?
要在 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): 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()
输出
广告