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


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


用法:

Series.explode(ignore_index=False)

将 list-like 的每个元素转换为一行,复制索引值。

参数

ignore_index布尔值,默认为 False

如果为 True,则生成的索引将标记为 0、1、...、n - 1。

返回

DataFrame

例子

>>> import cudf
>>> s = cudf.Series([[1, 2, 3], [], None, [4, 5]])
>>> s
0    [1, 2, 3]
1           []
2         None
3       [4, 5]
dtype: list
>>> s.explode()
0       1
0       2
0       3
1    <NA>
2    <NA>
3       4
3       5
dtype: int64

相关用法


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