gpt4 book ai didi

python - 将 pandas DataFrame 中的行与另一个文本连接起来

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

我需要实现以下逻辑的帮助:在对 DataFrame 进行分组时,我希望某些列与另一个文本连接。例如:

输入:

id | col1 | col2
---|------|------
1 | A | 12
1 | B | 43
---|------|-----

应用类似的东西后df.groupby(id).concatrows("text_"+col1+":"+col2.astype(str)),所需的输出应该是:

id | new col
---|-----------------------
1 | text_A:12;text_B:43
---|-----------------------

所以它应该是一种";".join(),但具有更大的灵 active 。

最佳答案

一个选项可能如下:

df.groupby('id').apply(lambda g: ';'.join('text_' + g.col1 + ':' + g.col2.astype(str)))

输出:

id
1 text_A:12;text_B:43

关于python - 将 pandas DataFrame 中的行与另一个文本连接起来,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57741190/

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