饼图不会显示没有错误python

时间:2019-02-12 16:52:27

标签: python python-3.x matplotlib pie-chart

我有一个这样的数据框: enter image description here

,我想在上面放一个饼图。 我使用了这两种方式来绘制饼图,但是它们不起作用!

fig6, ax6 = plt.subplots()
ax6.pie(df6, explode=None, labels=df6.index, autopct='%1.1f%%',
    shadow=False, startangle=90)
ax6.axis('equal') 
plt.ylabel('Twjkhjeet Class Popularity Vs. Day')


plt.show()

plt.figure(figsize=(5,5))
labels = 'Negative', 'Positive'
sizes = [9178, 2363]
colors = ['brown', 'lightblue']
explode = (0, 0) 
plt.pie(sizes, explode=explode, labels=labels, colors=colors,
    autopct='%1.1f%%', shadow=True, startangle=140)
plt.axis('equal')
plt.show()

我没有从这些代码中收到任何错误,但该图未显示!

1 个答案:

答案 0 :(得分:0)

我应该将%matplotlib inline放在fig6, ax6 = plt.subplots()之前。 这是我在运行代码后如何查看图。