第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何更新 tkinter Canvas 上的 matplotlib 子圖?

如何更新 tkinter Canvas 上的 matplotlib 子圖?

慕仙森 2024-01-04 16:39:22
我想更新嵌入到Canvastkinter GUI 中的子圖。無(wú)論我嘗試什么,我的意圖都會(huì)失敗??纯次矣卸噙h(yuǎn):from tkinter import *from matplotlib.backends.backend_tkagg import (FigureCanvasTkAgg, NavigationToolbar2Tk)import matplotlib.pyplot as pltimport timeroot = Tk()figId = plt.figure()canvas = FigureCanvasTkAgg(figId, master=root)canvas.get_tk_widget().pack()canvas.draw()vals1 = [5, 6, 3, 9]vals2 = vals1for i in range(0, len(vals1)+1):    toPlot = vals1[0:i]    plt.subplot(211).plot(toPlot)    plt.subplot(212).plot(toPlot)    time.sleep(1)root.mainloop()我發(fā)現(xiàn)做類(lèi)似的事情plt.pause(.1)不是正確的方法。對(duì)我來(lái)說(shuō),似乎我必須介紹matplotlib.animation,但我真的不知道該怎么做。
查看完整描述

1 回答

?
喵喵時(shí)光機(jī)

TA貢獻(xiàn)1846條經(jīng)驗(yàn) 獲得超7個(gè)贊

我找到了答案:


import random

from itertools import count

import matplotlib.pyplot as plt

from matplotlib.animation import FuncAnimation

from tkinter import *

from matplotlib.backends.backend_tkagg import (FigureCanvasTkAgg, NavigationToolbar2Tk)


x_vals = []

y_vals1 = []

y_vals2 = []


index = count()


root = Tk()

figId = plt.figure()

canvas = FigureCanvasTkAgg(figId, master=root)

canvas.get_tk_widget().pack()

canvas.draw()


def animate(i):

    x_vals.append(next(index))

    y_vals1.append(random.randint(0, 5))

    y_vals2.append(random.randint(0, 5))

    plt.cla()

    plt.plot(x_vals, y_vals1)

    plt.plot(x_vals, y_vals2)


ani = FuncAnimation(plt.gcf(), animate, interval=1000)


root.mainloop()


查看完整回答
反對(duì) 回復(fù) 2024-01-04
  • 1 回答
  • 0 關(guān)注
  • 326 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)