本文简要介绍
pyspark.pandas.Series.unique
的用法。用法:
Series.unique() → pyspark.pandas.series.Series
返回 Series 对象的唯一值。
唯一性按出现的顺序返回。基于哈希表的唯一性,因此不排序。
注意
此方法返回新创建的系列,而 pandas 将唯一值作为 NumPy 数组返回。
- 将唯一值作为系列返回。
返回:
例子:
>>> psser = ps.Series([2, 1, 3, 3], name='A') >>> psser.unique().sort_values() ... 1 ... 2 ... 3 Name: A, dtype: int64
>>> ps.Series([pd.Timestamp('2016-01-01') for _ in range(3)]).unique() 0 2016-01-01 dtype: datetime64[ns]
>>> psser.name = ('x', 'a') >>> psser.unique().sort_values() ... 1 ... 2 ... 3 Name: (x, a), dtype: int64
相关用法
- Python pyspark Series.unstack用法及代码示例
- Python pyspark Series.update用法及代码示例
- Python pyspark Series.asof用法及代码示例
- 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用法及代码示例
- Python pyspark Series.sub用法及代码示例
- Python pyspark Series.sum用法及代码示例
- Python pyspark Series.gt用法及代码示例
- Python pyspark Series.iloc用法及代码示例
- Python pyspark Series.explode用法及代码示例
- Python pyspark Series.str.slice_replace用法及代码示例
- Python pyspark Series.dt.is_month_end用法及代码示例
- Python pyspark Series.plot.barh用法及代码示例
- Python pyspark Series.between用法及代码示例
- Python pyspark Series.floordiv用法及代码示例
- Python pyspark Series.describe用法及代码示例
- Python pyspark Series.ndim用法及代码示例
- Python pyspark Series.str.rjust用法及代码示例
- Python pyspark Series.loc用法及代码示例
- Python pyspark Series.add_prefix用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.unique。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。