gpt4 book ai didi

python - 如何对 pandas 中的字符串中的数字进行排序?

转载 作者:行者123 更新时间:2023-11-28 22:11:11 26 4
gpt4 key购买 nike

我有一个这样的数据框:

id   String
1 345 -456 -13 879
2 158 -926 -81 249 35 -4 -53 9
3 945 -506 -103

我想像这样按降序排序

id   String
1 879 345 -13 -457
2 249 158 35 9 -4 -53 -81 -926
3 945 -103 -506

我试过这个:

df['string'] = df['string'].str.split(' ').map(lambda x: ' '.join(sorted(x)))

上面的函数做了某种排序,但不是我想要的方式。

最佳答案

首先需要将值转换为整数,排序,然后再转换回字符串:

f = lambda x: ' '.join(map(str, sorted(map(int, x), reverse=True)))
#another solution
#f = lambda x: ' '.join(str(z) for z in sorted((int(y) for y in x), reverse=True))
df['string'] = df['string'].str.split().map(f)
print (df)
id string
0 1 879 345 -13 -456
1 2 249 158 35 9 -4 -53 -81 -926
2 3 945 -103 -506

或者:

f = lambda x: ' '.join(map(str, sorted(map(int, x.split()), reverse=True)))
df['string'] = df['string'].map(f)

关于python - 如何对 pandas 中的字符串中的数字进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56036178/

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