對於我的生活,我無法獲得matplotlib
以非活動方式在ipython
中顯示圖形。在python中以交互方式顯示matplotlib中的圖形
我已經試過兩種方法 - 每一次,我得到了相同的結果:
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>]
如何獲取要顯示的圖表?
不清楚你的文本中的不活動意味着什麼,並在你的標題中迭代。 –
調用'pylab.show()',或者如果你想讓它們自動彈出,在創建一個圖之前調用'pylab.ion()'。 –
你的意思是交互式嗎? – Usagi