pyspark.pandas.CategoricalIndex.remove_categories¶
-
CategoricalIndex。
remove_categories
( 刪除:聯盟(pandas.core.indexes.base.Index,任何,列表],原地:bool=假 )→可選(pyspark.pandas.indexes.category.CategoricalIndex] ¶ -
刪除指定的類別。
刪除必須包括在舊的類別。值是在刪除類別將被設置為南
- 參數
-
- 刪除 種類或類別的列表
-
應該刪除的類別。
- 原地 bool,默認的錯誤
-
是否要刪除這個分類的類別原地或返回一個副本和刪除類別。
- 返回
-
- CategoricalIndex或沒有
-
分類刪除類別或沒有如果
原地= True
。
- 提出了
-
- ValueError
-
如果刪除不包含在類
另請參閱
-
rename_categories
-
重命名類別。
-
reorder_categories
-
重新排序類別。
-
add_categories
-
添加新類別。
-
remove_unused_categories
-
刪除未使用的類別。
-
set_categories
-
將類別設置為指定的。
例子
> > >idx=ps。CategoricalIndex(列表(“abbccc”))> > >idxCategoricalIndex ([' a ', ' b ', ' b ', ' c ', ' c ', ' c '],類別= [' a ', ' b ', ' c '],下令= False, dtype =“類別”)
> > >idx。remove_categories(“b”)CategoricalIndex ([a,南南' c ', ' c ', ' c '],類別= [' a ', ' c '],下令= False, dtype =“類別”)