如何在简单 UI 中为 Python 程序显示实时图表?
为 Python 程序在简单 UI 中显示实时图表,我们可以激活等值线图。
步骤
设置图形大小并调整子图之间的边距。
创建 10×10 维度的随机数据。
利用 **subplots()** 方法创建一个图形和一组子图。
通过 **FuncAnimation()** 类反复调用函数 **func** 来生成动画。
为了在函数中更新等值线的值,我们可以定义一个 **animate()** 方法,它可用于 **FuncAnimation()** 类中。
利用 **show()** 方法来显示图形。
示例
import numpy as np import matplotlib.pyplot as plt import matplotlib.animation as animation plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True data = np.random.randn(800).reshape(10, 10, 8) fig, ax = plt.subplots() def animate(i): ax.clear() ax.contourf(data[:, :, i], cmap="copper") ani = animation.FuncAnimation(fig, animate, 5, interval=100, blit=False) plt.show()
输出
广告