本文简要介绍
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
相关用法
- Python pyspark Series.argmin用法及代码示例
- Python pyspark Series.argmax用法及代码示例
- Python pyspark Series.asof用法及代码示例
- Python pyspark Series.add_prefix用法及代码示例
- Python pyspark Series.align用法及代码示例
- Python pyspark Series.astype用法及代码示例
- Python pyspark Series.any用法及代码示例
- Python pyspark Series.append用法及代码示例
- Python pyspark Series.apply用法及代码示例
- Python pyspark Series.add用法及代码示例
- Python pyspark Series.all用法及代码示例
- Python pyspark Series.add_suffix用法及代码示例
- Python pyspark Series.aggregate用法及代码示例
- Python pyspark Series.abs用法及代码示例
- Python pyspark Series.at_time用法及代码示例
- Python pyspark Series.axes用法及代码示例
- Python pyspark Series.at用法及代码示例
- Python pyspark Series.agg用法及代码示例
- Python pyspark Series.to_frame用法及代码示例
- Python pyspark Series.rsub用法及代码示例
- Python pyspark Series.mod用法及代码示例
- Python pyspark Series.str.join用法及代码示例
- Python pyspark Series.str.startswith用法及代码示例
- Python pyspark Series.dt.is_quarter_end用法及代码示例
- Python pyspark Series.dropna用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.argsort。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。