对于我的生活,我无法matplotlib
ipython
无效地显示图表。
我尝试了两种方法 - 每次都得到相同的结果:
In [10]: plot([1,2,3])
Out[10]: [<matplotlib.lines.Line2D at 0x104e9ca50>]
到目前为止,我尝试了两种方法: 使用the documentation作为指导,我尝试了两种不同的方法:
首先:
ipython --pylab
plot([1,2,3])
xlabel('hi mom')
In [3]: plot([1,2,3])
Out[3]: [<matplotlib.lines.Line2D at 0x107e369d0>]
第二
ipython
import numpy
import pylab
In [5]: pylab.plot([1,2,3])
Out[5]: [<matplotlib.lines.Line2D at 0x104ca7b90>]
如何显示情节?