gpt4 book ai didi

pandas - 每行 Pandas 的多个饼图

转载 作者:行者123 更新时间:2023-12-04 21:45:37 24 4
gpt4 key购买 nike

我想为每个大陆创建多个饼图,以显示酒精含量及其百分比。 dataframe

谢谢

最佳答案

您可以使用 DataFrame.plot.pie 使用转置数据帧 T :

df = pd.DataFrame({'beer':[1,2,3],
'spirit':[4,5,6],
'wine':[7,8,9]}, index=['Africa','Asia','Europe'])

print (df)
beer spirit wine
Africa 1 4 7
Asia 2 5 8
Europe 3 6 9

df.T.plot.pie(subplots=True, figsize=(10, 3))

graph

关于pandas - 每行 Pandas 的多个饼图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44236536/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com