pandas.Series.cat.codes #

系列.cat。代码[来源] #

返回一系列代码以及索引。

例子

>>> raw_cate = pd.Categorical(["a", "b", "c", "a"], categories=["a", "b"])
>>> ser = pd.Series(raw_cate)
>>> ser.cat.codes
0   0
1   1
2  -1
3   0
dtype: int8