饼图没有正确显示 python
pie chart doesn't show up without error python
我有一个这样的数据框:
我想在上面放一个饼图。
我使用了这两种方法来绘制饼图,但它们不起作用!
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()
我没有从这些代码中收到任何错误,但情节没有出现!
我应该把 %matplotlib inline
放在 fig6, ax6 = plt.subplots()
之前。
这就是我在 运行 代码之后看到情节的方式。
我有一个这样的数据框:
我想在上面放一个饼图。 我使用了这两种方法来绘制饼图,但它们不起作用!
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()
我没有从这些代码中收到任何错误,但情节没有出现!
我应该把 %matplotlib inline
放在 fig6, ax6 = plt.subplots()
之前。
这就是我在 运行 代码之后看到情节的方式。