我在Mac OS X PyCharm上设置了Enthought作为解释器:
~/Library/Enthought/Canopy_64bit/User
但是,它没有显示来自matplotlib的任何图。
import pandas as pd
from numpy import *
import matplotlib.pyplot as plt
ts = pd.Series(random.randn(1000), index=pd.date_range('1/1/2000', periods=1000))
ts = ts.cumsum()
ts.plot()
这只是给了我Out[124]: <matplotlib.axes.AxesSubplot at 0x10dd29f90>
。它没有显示情节,也没有做任何其他事情。没错,没什么。
答案 0 :(得分:7)
你错过了对将显示情节项目的show()函数的调用。
import pandas as pd
from numpy import *
import matplotlib.pyplot as plt
ts = pd.Series(random.randn(1000), index=pd.date_range('1/1/2000', periods=1000))
ts = ts.cumsum()
ts.plot()
plt.show()
很可能没有使用matplotlib在交互模式下配置PyCharm。