用法:
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
相关用法
- Python cudf.Series.exp用法及代码示例
- Python cudf.Series.equals用法及代码示例
- Python cudf.Series.empty用法及代码示例
- Python cudf.Series.eq用法及代码示例
- Python cudf.Series.ceil用法及代码示例
- Python cudf.Series.update用法及代码示例
- Python cudf.Series.max用法及代码示例
- Python cudf.Series.head用法及代码示例
- Python cudf.Series.reindex用法及代码示例
- Python cudf.Series.interleave_columns用法及代码示例
- Python cudf.Series.min用法及代码示例
- Python cudf.Series.nlargest用法及代码示例
- Python cudf.Series.to_frame用法及代码示例
- Python cudf.Series.mask用法及代码示例
- Python cudf.Series.notnull用法及代码示例
- Python cudf.Series.isnull用法及代码示例
- Python cudf.Series.rmod用法及代码示例
- Python cudf.Series.map用法及代码示例
- Python cudf.Series.nsmallest用法及代码示例
- Python cudf.Series.data用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.Series.explode。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。