gpt4 book ai didi

python - 来自 groupby 和计数的堆叠条形图

转载 作者:太空宇宙 更新时间:2023-11-04 04:32:29 25 4
gpt4 key购买 nike

groupbycount 操作之后,我有一个这样的数据框:

时间戳状态
2018-08-27 0 15
1 5
2 28
2018-08-28 0 20
1 10
2 58
...

当我尝试使用 df.plot.bar(stacked=True) 绘制它时,我得到以下不正确的图表。我如何才能将我的计算绘制成堆积条形图?

enter image description here

最佳答案

您需要使用 MultiIndex reshape Series by unstackDataFrame:

print (df.unstack(fill_value=0))
status 0 1 2
timestamp
2018-08-27 15 5 28
2018-08-28 20 10 58

df.unstack(fill_value=0).plot.bar(stacked=True)

pic

关于python - 来自 groupby 和计数的堆叠条形图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52420433/

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