我真的希望我可以在这里说得通。我有一个像这样的数据框:
A | B
-------------
123 | some texty text
123 | more texty text
123 | and the last bit of texty text
456 | oh wow this has some texty text too
456 | but not as much
现在,我正在尝试找到一种方法,可以将每个A值的所有对应文本仅合并到一行中。所以看起来像这样:
A | B
-------------
123 | some texty text more texty text and the last bit of texty text
456 | oh wow this has some texty text too but not as much
在pandas df上使用for循环尚未产生正确的结果。我尝试过的其他方法最终将整个数据框的所有文本放入一个新列中。或者,我陷入了无限循环。
对熊猫还是陌生的,还没有遇到像这样的难题。
非常感谢您的帮助。
标记
非常感谢您的帮助。