,我想在上面放一个饼图。 我使用了这两种方式来绘制饼图,但是它们不起作用!
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()
我没有从这些代码中收到任何错误,但该图未显示!
答案 0 :(得分:0)
我应该将%matplotlib inline
放在fig6, ax6 = plt.subplots()
之前。
这是我在运行代码后如何查看图。