gpt4 book ai didi

pandas - 以相反的顺序使用系列(最新)

转载 作者:行者123 更新时间:2023-12-04 13:23:29 27 4
gpt4 key购买 nike

如何反转Pandas中DataSeries的排序顺序,以便我按降序使用它们?

最佳答案

In [28]: s = pd.Series([20, 10, 30], ['c', 'a', 'b'])

In [29]: s
Out[29]:
c 20
a 10
b 30
dtype: int64

按索引排序
In [30]: s.sort_index(ascending=False)
Out[30]:
c 20
b 30
a 10
dtype: int64

按值排序
In [31]: s.sort()

In [32]: s[::-1]
Out[32]:
b 30
c 20
a 10
dtype: int64

关于pandas - 以相反的顺序使用系列(最新),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16403442/

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