我正在尝试使用以下代码每 10 秒更新一次绘图:
@sched.interval_schedule(seconds = 10)
def update_line():
c = 0
while c <= 9:
y[c] = y[c] + 1
c = c+1
x = range(1, 11)
plt.ion()
fig = plt.figure(1)
ax = fig.add_subplot(111)
plt.plot(x, y)
它只是为第一组 y 数据绘制图形,之后显示错误:“WARNING:apscheduler.scheduler:Execution of job”update_line (trigger: interval[0:00:10], next run at: 2013 -02-06 16:00:42.942079)"已跳过:已达到最大运行实例数 (1)"
我应该以某种方式使用 draw() 吗?
谢谢