gpt4 book ai didi

python - Pandas 数据框获取每组的第一行并复制到其他行

转载 作者:行者123 更新时间:2023-12-01 00:16:24 25 4
gpt4 key购买 nike

我有一个如下所示的 pandas DataFrame。

df = pd.DataFrame({'id' : [1,1,1,2,2,3,3,3,3,4,4,5,6,6,6,7,7],
'value' : ["first","second","second","first",
"second","first","third","fourth",
"fifth","second","fifth","first",
"first","second","third","fourth","fifth"]})

我想按 ["id","value"] 对其进行分组,获取每个组的第一行,并使用其值覆盖该组其余行中的值(因此结果表的维度与源表相同)

        id   value
0 1 first
1 1 second
2 1 second
3 2 second
4 2 first
5 3 first
6 3 third
7 3 fourth
8 3 fifth
9 4 second
10 4 fifth
11 5 first
12 6 first
13 6 second
14 6 third
15 7 fourth
16 7 fifth

预期结果

        id   value
0 1 first
1 1 first
2 1 first
3 2 second
4 2 second
5 3 first
6 3 first
7 3 first
8 3 first
9 4 second
10 4 second
11 5 first
12 6 first
13 6 first
14 6 first
15 7 fourth
16 7 fourth

我尝试了很多方法,但没有效果......有什么想法吗?

最佳答案

使用GroupBy.transformGroupBy.first :

df['value'] = df.groupby('id')['value'].transform('first')

关于python - Pandas 数据框获取每组的第一行并复制到其他行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59300961/

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