當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python pyspark Series.argsort用法及代碼示例


本文簡要介紹 pyspark.pandas.Series.argsort 的用法。

用法:

Series.argsort() → pyspark.pandas.series.Series

返回對 Series 值進行排序的整數索引。與 pandas 不同,索引順序不會保留在結果中。

返回

Series

排序順序中值的位置,-1 表示 nan 值。

例子

>>> psser = ps.Series([3, 3, 4, 1, 6, 2, 3, 7, 8, 7, 10])
>>> psser
0      3
1      3
2      4
3      1
4      6
5      2
6      3
7      7
8      8
9      7
10    10
dtype: int64
>>> psser.argsort().sort_index()
0      3
1      5
2      0
3      1
4      6
5      2
6      4
7      7
8      9
9      8
10    10
dtype: int64

相關用法


注:本文由純淨天空篩選整理自spark.apache.org大神的英文原創作品 pyspark.pandas.Series.argsort。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。