用法:
Series.append(to_append, ignore_index=False, verify_integrity=False)
连接两个或多个系列。
- to_append:系列或系列的列表/元组
附加自我的系列。
- ignore_index:布尔值,默认为 False
如果为 True,则生成的轴将标记为 0、1、...、n - 1。
- verify_integrity:布尔值,默认为 False
如果为 True,则在创建具有重复项的索引时引发异常。
- Series
串联系列。
参数:
返回:
注意:
迭代地附加到一个系列可能比单个连接的计算密集度更高。更好的解决方案是将值附加到列表中,然后一次将列表与原始系列连接起来。
例子:
>>> s1 = pd.Series([1, 2, 3]) >>> s2 = pd.Series([4, 5, 6]) >>> s3 = pd.Series([4, 5, 6], index=[3, 4, 5]) >>> s1.append(s2) 0 1 1 2 2 3 0 4 1 5 2 6 dtype:int64
>>> s1.append(s3) 0 1 1 2 2 3 3 4 4 5 5 6 dtype:int64
ignore_index
设置为 True:>>> s1.append(s2, ignore_index=True) 0 1 1 2 2 3 3 4 4 5 5 6 dtype:int64
verify_integrity
设置为 True:>>> s1.append(s2, verify_integrity=True) Traceback (most recent call last): ... ValueError:Indexes have overlapping values:[0, 1, 2]
相关用法
- Python pandas.Series.apply用法及代码示例
- Python pandas.Series.add_prefix用法及代码示例
- Python pandas.Series.at_time用法及代码示例
- Python pandas.Series.array用法及代码示例
- Python pandas.Series.argmin用法及代码示例
- Python pandas.Series.abs用法及代码示例
- Python pandas.Series.asfreq用法及代码示例
- Python pandas.Series.asof用法及代码示例
- Python pandas.Series.agg用法及代码示例
- Python pandas.Series.at用法及代码示例
- Python pandas.Series.all用法及代码示例
- Python pandas.Series.add用法及代码示例
- Python pandas.Series.add_suffix用法及代码示例
- Python pandas.Series.argmax用法及代码示例
- Python pandas.Series.align用法及代码示例
- Python pandas.Series.aggregate用法及代码示例
- Python pandas.Series.any用法及代码示例
- Python pandas.Series.astype用法及代码示例
- Python pandas.Series.autocorr用法及代码示例
- Python pandas.Series.map用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.append。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。