我刚进入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.figure
和matplotlib.pyplot
绘图有什么区别?可以matplotlib.pyplot
用于构建wx应用程序吗?
答案 0 :(得分:12)
Pyplot是类似Matlab的状态机API,matplotlib.figure.Figure是面向对象API的一部分。参见例如this tutorial开始使用面向对象的API。如果您想创建一个wx应用,you will most likely need to learn the OO API。