用法:
classmethod Series.from_categorical(categorical, codes=None)
从 pandas.Categorical 创建
- categorical:pandas.Categorical
包含存储在 pandas 分类中的数据。
- codes:array-like,可选。
此分类的分类代码。如果定义了
codes
,则使用它们而不是categorical.codes
- Series
一个 cudf 分类系列。
参数:
返回:
例子:
>>> import cudf >>> import pandas as pd >>> pd_categorical = pd.Categorical(pd.Series(['a', 'b', 'c', 'a'], dtype='category')) >>> pd_categorical ['a', 'b', 'c', 'a'] Categories (3, object): ['a', 'b', 'c'] >>> series = cudf.Series.from_categorical(pd_categorical) >>> series 0 a 1 b 2 c 3 a dtype: category Categories (3, object): ['a', 'b', 'c']
相关用法
- Python cudf.Series.from_pandas用法及代码示例
- Python cudf.Series.from_masked_array用法及代码示例
- Python cudf.Series.from_arrow用法及代码示例
- Python cudf.Series.floordiv用法及代码示例
- Python cudf.Series.fillna用法及代码示例
- Python cudf.Series.factorize用法及代码示例
- Python cudf.Series.first用法及代码示例
- Python cudf.Series.floor用法及代码示例
- Python cudf.Series.ceil用法及代码示例
- Python cudf.Series.update用法及代码示例
- Python cudf.Series.max用法及代码示例
- Python cudf.Series.head用法及代码示例
- Python cudf.Series.reindex用法及代码示例
- Python cudf.Series.interleave_columns用法及代码示例
- Python cudf.Series.min用法及代码示例
- Python cudf.Series.nlargest用法及代码示例
- Python cudf.Series.to_frame用法及代码示例
- Python cudf.Series.mask用法及代码示例
- Python cudf.Series.notnull用法及代码示例
- Python cudf.Series.isnull用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.Series.from_categorical。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。