我正在尝试使用matplotlib构建饼图。这是我的代码:
party = data['Name'].groupby(data['Party']).count()
party
上面的代码导致:
Party
The Centre Party 22
The Christian Democrats 16
The Green Party 25
The Left Party 21
The Liberal Party 19
Name: Name, dtype: int64
然后,以下代码
"plt.pie(party, labels=party)"
创建一个饼图,将这些值(例如,22,16,25)作为标签。
我想要的是将这些聚会名称显示为标签。有什么建议吗?提前谢谢。
答案 0 :(得分:0)
我相信你可以使用 -
plt.pie(party, labels=party.index)