在我的 Pycharm 中,为什么 df.plot() 没有出现在 PyCharm 中?

In my Pycharm why the df.plot() do not show up in PyCharm?

我有下面的 pandas 代码,我想 plot() 来显示图像,但是 PyCharm 没有显示出来。

import numpy as np
import pandas as pd


date1 = pd.date_range('20190114', periods=6)

df = pd.DataFrame(np.random.randn(6, 4))  # shape(6, 4)
print(df[0])

df[0].plot()

在我的 Pycharm 为什么 df.plot() 没有出现?

尝试:

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt

date1 = pd.date_range('20190114', periods=6)

df = pd.DataFrame(np.random.randn(6, 4))  # shape(6, 4)
print(df[0])

df[0].plot()
plt.show()

我不太确定这是否是您想要的,但是您可以:

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt

date1 = pd.date_range('20190114', periods=6)

df = pd.DataFrame(np.random.randn(6, 4))  # shape(6, 4)
print(df)

plt.plot(df)
plt.show()