gpt4 book ai didi

python - Enthought + PyCharm - 无法再显示绘图

转载 作者:太空宇宙 更新时间:2023-11-04 07:40:30 26 4
gpt4 key购买 nike

我在 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> .它不显示情节,也不做任何其他事情。没有错误,什么都没有。

最佳答案

您缺少对将显示绘图项的 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 的交互模式下配置。

关于python - Enthought + PyCharm - 无法再显示绘图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22856355/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com