您好,登錄后才能下訂單哦!
使用matplotlib怎么實現一個數據實時刷新功能?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
import matplotlib.pyplot as plt import numpy as np import threading import sys from random import random, randrange from time import sleep ''' 繪制2x2的畫板 可設置窗口標題和4個子圖標題 可更新曲線數據 ''' quit_flag = False # 退出標志 class Plot2_2(object): """ 2x2的畫板 """ def __init__(self, wtitle='Figure', p1title='1', p2title='2', p3title='3', p4title='4'): self.sub_title = [p1title, p2title, p3title, p4title] # 4個子圖的標題 self.fig, self.ax = plt.subplots(2, 2) # 創建2X2子圖 self.fig.subplots_adjust(wspace=0.3, hspace=0.3) # 設置子圖之間的間距 self.fig.canvas.set_window_title(wtitle) # 設置窗口標題 # 子圖字典,key為子圖的序號,value為子圖句柄 self.axdict = {0: self.ax[0, 0], 1: self.ax[0, 1], 2: self.ax[1, 0], 3: self.ax[1, 1]} def showPlot(self): """ 顯示曲線 """ plt.show() def setPlotStyle(self, index): """ 設置子圖的樣式,這里僅設置了標題 """ self.axdict[index].set_title(self.sub_title[index], fontsize=12) def updatePlot(self, index, x, y): """ 更新指定序號的子圖 :param index: 子圖序號 :param x: 橫軸數據 :param y: 縱軸數據 :return: """ # X軸數據必須和Y軸數據長度一致 if len(x) != len(y): ex = ValueError("x and y must have same first dimension") raise ex self.axdict[index].cla() # 清空子圖數據 self.axdict[index].plot(x, y) # 繪制最新的數據 self.setPlotStyle(index) # 設置子圖樣式 if min(x) < max(x): self.axdict[index].set_xlim(min(x), max(x)) # 根據X軸數據區間調整X軸范圍 plt.draw() print("%s end" % sys._getframe().f_code.co_name) def updatePlot(plot): """ 模擬收到實時數據,更新曲線的操作 :param plot: 曲線實例 :return: """ print("Thread: %s" % threading.current_thread().getName()) count = 0 global quit_flag print("quit_flag[%s]" % str(quit_flag)) while True: if quit_flag: print("quit_flag[%s]" % str(quit_flag)) break count += 1 print("count#%d" % count) x = np.arange(0, 100, 1) y = np.random.normal(loc=1, scale=1, size=100) # 產生隨機數,模擬變化的曲線 index = randrange(4) # 隨機更新某一個子圖 plot.updatePlot(index, x, y) sleep(random() * 3) def main(): p = Plot2_2() # 創建一個2X2畫板 t = threading.Thread(target=updatePlot, args=(p,)) # 啟動一個線程更新曲線數據 t.start() p.showPlot() # showPlot方法會阻塞當前線程,直到窗口關閉 print("plot close") global quit_flag quit_flag = True # 通知更新曲線數據的線程退出 t.join() print("Thread: %s end" % threading.current_thread().getName()) if __name__ == '__main__': main()
關于使用matplotlib怎么實現一個數據實時刷新功能問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。