我在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]:
.它没有显示情节,也没有做任何其他事情.没有错误,没有.
你错过了对将显示绘图项的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()
PyCharm很可能没有在matplotlib的交互模式下配置.