当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python cudf.Series.append用法及代码示例


用法:

Series.append(to_append, ignore_index=False, verify_integrity=False)

附加来自另一个 Series 或 array-like 对象的值。如果 ignore_index=True ,则重置索引。

参数

to_append系列或系列的列表/元组

附加自我的系列。

ignore_index布尔值,默认为 False。

如果为 True,则不使用索引。

verify_integrity布尔值,默认为 False

当前不支持此参数。

返回

Series

一个新的串联系列

例子

>>> import cudf
>>> s1 = cudf.Series([1, 2, 3])
>>> s2 = cudf.Series([4, 5, 6])
>>> s1
0    1
1    2
2    3
dtype: int64
>>> s2
0    4
1    5
2    6
dtype: int64
>>> s1.append(s2)
0    1
1    2
2    3
0    4
1    5
2    6
dtype: int64
>>> s3 = cudf.Series([4, 5, 6], index=[3, 4, 5])
>>> s3
3    4
4    5
5    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

相关用法


注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.Series.append。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。