gpt4 book ai didi

python - pandas 数据框中前几行的累积计数

转载 作者:行者123 更新时间:2023-12-01 09:28:18 26 4
gpt4 key购买 nike

我有一个像这样的数据框:

 date   ID   flag
Apr1 1 True
Apr2 2 True
May1 1 True
May1 1 False
May2 1 True

想要ID的累计计数在前几天(包括那天),标志是 True ,像这样:

 date   ID   flag   count
Apr1 1 True 1
Apr2 2 True 1
May1 1 True 2
May1 1 False 2
May2 1 True 3

我尝试了 bool 掩码和 cumsum() ,但没有让它发挥作用。有建议吗?

最佳答案

这不是您正在寻找的 groupbycumsum

df.groupby('ID').flag.cumsum().astype(int)
Out[362]:
0 1
1 1
2 2
3 2
4 3
Name: flag, dtype: int32

关于python - pandas 数据框中前几行的累积计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50181616/

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