国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

python之matplotlib學習繪制動態更新圖實例代碼

2020-02-22 22:57:55
字體:
來源:轉載
供稿:網友

簡介

通過定時器Timer觸發事件,定時更新繪圖,可以形成動態更新圖片。下面的實例是學習《matplotlib for python developers》一文的筆記。

實現

實現代碼及簡單介紹

通過self.user = self.user[1:] + [temp],每次刪除列表的第一元素,在其尾部添加新的元素。這樣完成user數據的動態更新。其他詳細的解釋見文中的注釋部分。

#-*-coding:utf-8-*- import wx from matplotlib.figure import Figure import matplotlib.font_manager as font_manager import numpy as np from matplotlib.backends.backend_wxagg import /  FigureCanvasWxAgg as FigureCanvas # wxWidgets object ID for the timer TIMER_ID = wx.NewId() # number of data points POINTS = 300  class PlotFigure(wx.Frame):   """Matplotlib wxFrame with animation effect"""   def __init__(self):     wx.Frame.__init__(self, None, wx.ID_ANY, title="CPU Usage Monitor", size=(600, 400))     # Matplotlib Figure     self.fig = Figure((6, 4), 100)     # bind the Figure to the backend specific canvas     self.canvas = FigureCanvas(self, wx.ID_ANY, self.fig)     # add a subplot     self.ax = self.fig.add_subplot(111)     # limit the X and Y axes dimensions     self.ax.set_ylim([0, 100])     self.ax.set_xlim([0, POINTS])          self.ax.set_autoscale_on(False)     self.ax.set_xticks([])     # we want a tick every 10 point on Y (101 is to have 10     self.ax.set_yticks(range(0, 101, 10))     # disable autoscale, since we don't want the Axes to ad     # draw a grid (it will be only for Y)     self.ax.grid(True)     # generates first "empty" plots     self.user = [None] * POINTS     self.l_user,=self.ax.plot(range(POINTS),self.user,label='User %')      # add the legend     self.ax.legend(loc='upper center',               ncol=4,               prop=font_manager.FontProperties(size=10))     # force a draw on the canvas()     # trick to show the grid and the legend     self.canvas.draw()     # save the clean background - everything but the line     # is drawn and saved in the pixel buffer background     self.bg = self.canvas.copy_from_bbox(self.ax.bbox)     # bind events coming from timer with id = TIMER_ID     # to the onTimer callback function     wx.EVT_TIMER(self, TIMER_ID, self.onTimer)    def onTimer(self, evt):     """callback function for timer events"""     # restore the clean background, saved at the beginning     self.canvas.restore_region(self.bg)         # update the data     temp =np.random.randint(10,80)     self.user = self.user[1:] + [temp]     # update the plot     self.l_user.set_ydata(self.user)     # just draw the "animated" objects     self.ax.draw_artist(self.l_user)# It is used to efficiently update Axes data (axis ticks, labels, etc are not updated)     self.canvas.blit(self.ax.bbox) if __name__ == '__main__':   app = wx.PySimpleApp()   frame = PlotFigure()   t = wx.Timer(frame, TIMER_ID)   t.Start(50)   frame.Show()   app.MainLoop()             
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 永新县| 简阳市| 元谋县| 抚州市| 栾川县| 鹿邑县| 句容市| 木里| 台北市| 蓬莱市| 连云港市| 玉山县| 赫章县| 大洼县| 潜山县| 郑州市| 蕉岭县| 娱乐| 台北市| 泰顺县| 安庆市| 杭州市| 漳州市| 克拉玛依市| 六安市| 孟津县| 库车县| 仁怀市| 平江县| 平和县| 镇宁| 浦东新区| 马山县| 旬阳县| 井冈山市| 子洲县| 康平县| 乌拉特后旗| 福海县| 莒南县| 盈江县|