本文简要介绍
pyspark.pandas.Series.sort_index
的用法。用法:
Series.sort_index(axis: Union[int, str] = 0, level: Union[int, List[int], None] = None, ascending: bool = True, inplace: bool = False, kind: str = None, na_position: str = 'last') → Optional[pyspark.pandas.series.Series]
按标签排序对象(沿轴)
- axis:索引,列直接排序。目前,仅支持axis = 0。
- level:int 或级别名称或整数列表或级别名称列表
如果不是无,则对指定索引级别的值进行排序
- ascending:布尔值,默认 True
升序与降序排序
- inplace:布尔值,默认为 False
如果为真,就地执行操作
- kind:str,默认无
pandas-on-Spark目前不允许指定排序算法,默认无
- na_position:{‘first’, ‘last’},默认 ‘last’
首先将NaNs放在开头,最后将NaNs放在末尾。未实现多索引。
- sorted_obj:Series
参数:
返回:
例子:
>>> df = ps.Series([2, 1, np.nan], index=['b', 'a', np.nan])
>>> df.sort_index() a 1.0 b 2.0 NaN NaN dtype: float64
>>> df.sort_index(ascending=False) b 2.0 a 1.0 NaN NaN dtype: float64
>>> df.sort_index(na_position='first') NaN NaN a 1.0 b 2.0 dtype: float64
>>> df.sort_index(inplace=True) >>> df a 1.0 b 2.0 NaN NaN dtype: float64
>>> df = ps.Series(range(4), index=[['b', 'b', 'a', 'a'], [1, 0, 1, 0]], name='0')
>>> df.sort_index() a 0 3 1 2 b 0 1 1 0 Name: 0, dtype: int64
>>> df.sort_index(level=1) a 0 3 b 0 1 a 1 2 b 1 0 Name: 0, dtype: int64
>>> df.sort_index(level=[1, 0]) a 0 3 b 0 1 a 1 2 b 1 0 Name: 0, dtype: int64
相关用法
- Python pyspark Series.sort_values用法及代码示例
- Python pyspark Series.str.join用法及代码示例
- Python pyspark Series.str.startswith用法及代码示例
- Python pyspark Series.sub用法及代码示例
- Python pyspark Series.sum用法及代码示例
- Python pyspark Series.str.slice_replace用法及代码示例
- Python pyspark Series.str.rjust用法及代码示例
- Python pyspark Series.sem用法及代码示例
- Python pyspark Series.str.lstrip用法及代码示例
- Python pyspark Series.squeeze用法及代码示例
- Python pyspark Series.str.len用法及代码示例
- Python pyspark Series.str.slice用法及代码示例
- Python pyspark Series.str.isnumeric用法及代码示例
- Python pyspark Series.str.endswith用法及代码示例
- Python pyspark Series.str.swapcase用法及代码示例
- Python pyspark Series.str.isdecimal用法及代码示例
- Python pyspark Series.str.rstrip用法及代码示例
- Python pyspark Series.str.istitle用法及代码示例
- Python pyspark Series.skew用法及代码示例
- Python pyspark Series.str.match用法及代码示例
- Python pyspark Series.str.rindex用法及代码示例
- Python pyspark Series.swaplevel用法及代码示例
- Python pyspark Series.str.rsplit用法及代码示例
- Python pyspark Series.std用法及代码示例
- Python pyspark Series.str.strip用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.sort_index。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。