matplotlib.pyplot和matplotlib.figure有什么区别?

时间:2011-03-27 15:29:38

标签: python wxpython matplotlib

我刚进入matplotlib。

我看到使用了matplotlib.pyplot的一些示例,但是当将matplotlib与wxpython集成时,我常常看到matplotlib.figure喜欢

from matplotlib.figure import Figure

...

vboxFigure = wx.BoxSizer(wx.VERTICAL)
self.figure = Figure()
self.axes = self.figure.add_subplot(111)

t = [1,2,3,4,5]
s = [0,0,0,0,0]

self.axes.plot(t,s, 'b-')
self.canvas = FigureCanvas(panel, -1, self.figure)

vboxFigure.Add(self.canvas, 1, wx.LEFT | wx.TOP | wx.EXPAND)
hbox.Add(vboxFigure, 1, flag=wx.EXPAND)

使用matplotlib.figurematplotlib.pyplot绘图有什么区别?可以matplotlib.pyplot用于构建wx应用程序吗?

1 个答案:

答案 0 :(得分:12)

Pyplot是类似Matlab的状态机API,matplotlib.figure.Figure是面向对象API的一部分。参见例如this tutorial开始使用面向对象的API。如果您想创建一个wx应用,you will most likely need to learn the OO API