熊猫图没有出现在屏幕上

时间:2017-10-25 17:56:43

标签: python pandas

有人可以帮我找出为什么这段代码在我的屏幕上没有显示任何类型的图表?

import pandas as pd
data = [1.5]*7 + [2.5]*2 + [3.5]*8 + [4.5]*3 + [5.5]*1 + [6.5]*8
df = pd.DataFrame(data)
df.plot(kind='density')

此示例取自here。代码通过Ubuntu上的终端运行

1 个答案:

答案 0 :(得分:1)

你可能也必须这样做,虽然我没有适当的操作系统来检查你:

import matplotlib.pyplot as plt
# your other code here
plt.show() # at the end