我访问了scipy site for PyLab.我在那里找不到它的文档。 matplotlib site也没有提供任何信息。
我在哪里可以找到关于PyLab的教程/文档?
Pylab基本上只是Numpy和Matplotlib在一个统一的命名空间下。了解其中任何一个,你就会理解Pylab。
如果你想在脚本中绘制东西,通常最好使用import matplotlib.pyplot
而不是import pylab
,但实际上选择取决于你。
如果你想进行交互式绘图(例如,通过调用ipython --pylab
),那么pylab就是你的选择。然而,pyplot
也可以使用pyplot.ion()
进行交互模式。
可在此处找到更多信息:
What is the difference between pylab and pyplot?
Exact semantics of Matplotlib's "interactive mode" (ion(), ioff())?