gpt4 book ai didi

python - pandas - 组合行字符串

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

我有一个这样的数据框:

    id        text
1 DM,HTN,Enlarged prostate
2 hypertensive and on regular treatment
2 LBP
3 DM,HTN,Enlarged prostate

我想像这样合并相同 id 的文本:

   id        text
1 DM,HTN,Enlarged prostate
2 hypertensive and on regular treatment LBP
3 DM,HTN,Enlarged prostate

id 2 的文本合并。我怎样才能做到这一点?任何帮助将不胜感激。

最佳答案

您可以使用 group by 函数来执行此操作

grouped_df = df.groupby("id").apply(lambda x: "%s" % ' '.join(x['text']))

关于python - pandas - 组合行字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37427522/

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