pandas.Categorical.remove_unused_categories#
- Categorical.remove_unused_categories()[源代码][源代码]#
移除未使用的分类。
- 返回:
- Categorical
删除了未使用类别的分类数据。
参见
rename_categories
重命名类别。
reorder_categories
重新排序类别。
add_categories
添加新类别。
remove_categories
移除指定的类别。
set_categories
将类别设置为指定的类别。
示例
>>> c = pd.Categorical(["a", "c", "b", "c", "d"]) >>> c ['a', 'c', 'b', 'c', 'd'] Categories (4, object): ['a', 'b', 'c', 'd']
>>> c[2] = "a" >>> c[4] = "c" >>> c ['a', 'c', 'a', 'c', 'c'] Categories (4, object): ['a', 'b', 'c', 'd']
>>> c.remove_unused_categories() ['a', 'c', 'a', 'c', 'c'] Categories (2, object): ['a', 'c']