pyspark.pandas.CategoricalIndex.codes¶
-
財產
CategoricalIndex。
代碼
¶ -
這個分類的分類碼。
代碼的整數索引分類指數實際值的位置。
沒有setter,正常使用其他分類方法和分類項setter修改值。
- 返回
-
- 指數
-
的non-writable視圖代碼索引。
例子
> > >idx=ps。CategoricalIndex(列表(“abbccc”))> > >idxCategoricalIndex ([' a ', ' b ', ' b ', ' c ', ' c ', ' c '],類別= [' a ', ' b ', ' c '],下令= False, dtype =“類別”)
> > >idx。代碼Int64Index ([0, 1, 1、2、2、2], dtype =“int64”)