pandas.Categorical.add_categories#
- Categorical.add_categories(new_categories)[源代码][源代码]#
添加新类别。
new_categories 将被包含在类别中的最后/最高位置,并且在此次调用后将不被直接使用。
- 参数:
- 新类别类别或类似列表的类别
要包含的新类别。
- 返回:
- Categorical
增加了新类别的分类。
- 引发:
- ValueError
如果新类别包含旧类别或未验证为类别
参见
rename_categories
重命名类别。
reorder_categories
重新排序类别。
remove_categories
移除指定的类别。
remove_unused_categories
移除未使用的分类。
set_categories
将类别设置为指定的类别。
示例
>>> c = pd.Categorical(["c", "b", "c"]) >>> c ['c', 'b', 'c'] Categories (2, object): ['b', 'c']
>>> c.add_categories(["d", "a"]) ['c', 'b', 'c'] Categories (4, object): ['b', 'c', 'd', 'a']