如何在 Python 程序中为一个简单的UI显示实时图形?
要在 Python 程序的简单 UI 中显示实时图形,我们可以使用动画轮廓图。
步骤
- 设置图形大小并调整子图之间和周围的填充。
-
创建一个形状为十乘十的随机数据。
-
使用 subplots() 方法创建一个图形和一组子图。
-
通过重复调用函数 func ,使用 FuncAnimation() 类创建动画。
-
要在函数中更新轮廓值,我们可以定义一个方法 animate() ,该方法可用于 FuncAnimation() 类。
-
要显示图形,请使用 show() 方法。
更多Python相关文章,请阅读:Python 教程
示例
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()