本文简要介绍
pyspark.pandas.Series.cat.codes
的用法。用法:
property cat.codes
返回系列代码以及索引。
例子:
>>> s = ps.Series(list("abbccc"), dtype="category") >>> s 0 a 1 b 2 b 3 c 4 c 5 c dtype: category Categories (3, object): ['a', 'b', 'c']
>>> s.cat.codes 0 0 1 1 2 1 3 2 4 2 5 2 dtype: int8
相关用法
- Python pyspark Series.cat.categories用法及代码示例
- Python pyspark Series.cat.ordered用法及代码示例
- Python pyspark Series.cat.as_unordered用法及代码示例
- Python pyspark Series.cat.set_categories用法及代码示例
- Python pyspark Series.cat.rename_categories用法及代码示例
- Python pyspark Series.cat.as_ordered用法及代码示例
- Python pyspark Series.cat.reorder_categories用法及代码示例
- Python pyspark Series.cat.remove_categories用法及代码示例
- Python pyspark Series.cat.add_categories用法及代码示例
- Python pyspark Series.cat.remove_unused_categories用法及代码示例
- Python pyspark Series.cumsum用法及代码示例
- Python pyspark Series.cummax用法及代码示例
- Python pyspark Series.copy用法及代码示例
- Python pyspark Series.cummin用法及代码示例
- Python pyspark Series.cumprod用法及代码示例
- Python pyspark Series.count用法及代码示例
- Python pyspark Series.combine_first用法及代码示例
- Python pyspark Series.clip用法及代码示例
- Python pyspark Series.corr用法及代码示例
- Python pyspark Series.compare用法及代码示例
- Python pyspark Series.asof用法及代码示例
- Python pyspark Series.to_frame用法及代码示例
- Python pyspark Series.rsub用法及代码示例
- Python pyspark Series.mod用法及代码示例
- Python pyspark Series.str.join用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.cat.codes。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。