在wxpython中嵌入实时更新matplotlib图

时间:2014-02-05 14:13:05

标签: python matplotlib wxwidgets

我是wx python的新手。以下是从可以实时更新的文本文件中绘制实时图形的代码。任何人都可以帮我把这个代码嵌入到wx框架中。我迫切需要它用于我的项目。

import matplotlib.pyplot as plt  
import matplotlib.animation as animation
import time

fig= plt.figure()
ax1=fig.add_subplot(1,1,1)

def animate(i):
    pullData= open('C:/test/e.txt','r').read()
    dataArray= pullData.split('\n')
    xar=[]
    yar=[]
    for eachLine in dataArray:
        if len(eachLine)>1:
            x,y= eachLine.split(',')
            xar.append(int(x)) 
            yar.append(int(y))
    ax1.clear()
    ax1.plot(xar,yar)
ani= animation.FuncAnimation(fig,animate, interval=1000)
plt.show()

1 个答案:

答案 0 :(得分:3)

在这里,我将举例说明,但您需要根据需要更改绘图部分:

import wx
import numpy as np
import matplotlib.figure as mfigure
import matplotlib.animation as manim

from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg

class MyFrame(wx.Frame):
    def __init__(self):
        super(MyFrame,self).__init__(None, wx.ID_ANY, size=(800, 600))
        self.fig = mfigure.Figure()
        self.ax = self.fig.add_subplot(111)
        self.canv = FigureCanvasWxAgg(self, wx.ID_ANY, self.fig)
        self.values = []
        self.animator = manim.FuncAnimation(self.fig,self.anim, interval=1000)

    def anim(self,i):
        if i%10 == 0:
            self.values = []
        else:
            self.values.append(np.random.rand())
        self.ax.clear()
        self.ax.set_xlim([0,10])
        self.ax.set_ylim([0,1])        
        return self.ax.plot(np.arange(1,i%10+1),self.values,'d-')


wxa = wx.PySimpleApp()
w = MyFrame()
w.Show(True)
wxa.MainLoop()