用法:
CategoricalIndex.add_categories(*args, **kwargs)
添加新类别。
new_categories
将包含在类别中的最后/最高位置,并且在此调用后将直接不使用。- new_categories:类别或类别的list-like
要包含的新类别。
- inplace:布尔值,默认为 False
是否就地添加类别或返回此类别的副本以及添加的类别。
- cat:分类或无
添加了新类别的分类,如果
inplace=True
则为无。
- ValueError
如果新类别包括旧类别或不作为类别验证
参数:
返回:
抛出:
例子:
>>> 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']
相关用法
- Python pandas.CategoricalIndex.remove_unused_categories用法及代码示例
- Python pandas.CategoricalIndex.remove_categories用法及代码示例
- Python pandas.CategoricalIndex.map用法及代码示例
- Python pandas.CategoricalIndex.rename_categories用法及代码示例
- Python pandas.CategoricalIndex用法及代码示例
- Python pandas.Categorical用法及代码示例
- Python pandas.Categorical.from_codes用法及代码示例
- Python pandas.CategoricalDtype用法及代码示例
- Python pandas.arrays.IntervalArray.is_empty用法及代码示例
- Python pandas.DataFrame.ewm用法及代码示例
- Python pandas.api.types.is_timedelta64_ns_dtype用法及代码示例
- Python pandas.DataFrame.dot用法及代码示例
- Python pandas.DataFrame.apply用法及代码示例
- Python pandas.DataFrame.combine_first用法及代码示例
- Python pandas.read_pickle用法及代码示例
- Python pandas.Index.value_counts用法及代码示例
- Python pandas.DatetimeTZDtype用法及代码示例
- Python pandas.DataFrame.cumsum用法及代码示例
- Python pandas.Interval.is_empty用法及代码示例
- Python pandas.api.indexers.FixedForwardWindowIndexer用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.CategoricalIndex.add_categories。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。