用法:
DataFrame.explode(column, ignore_index=False)
将 list-like 的每个元素转换为一行,复制索引值。
- column:字符串或元组
要爆炸的列。
- ignore_index:布尔值,默认为 False
如果为 True,则生成的索引将标记为 0、1、...、n - 1。
- DataFrame
参数:
返回:
例子:
>>> import cudf >>> df = cudf.DataFrame({ ... "a": [[1, 2, 3], [], None, [4, 5]], ... "b": [11, 22, 33, 44], ... }) >>> df a b 0 [1, 2, 3] 11 1 [] 22 2 None 33 3 [4, 5] 44 >>> df.explode('a') a b 0 1 11 0 2 11 0 3 11 1 <NA> 22 2 <NA> 33 3 4 44 3 5 44
相关用法
- Python cudf.DataFrame.exp用法及代码示例
- Python cudf.DataFrame.equals用法及代码示例
- Python cudf.DataFrame.eq用法及代码示例
- Python cudf.DataFrame.empty用法及代码示例
- Python cudf.DataFrame.mod用法及代码示例
- Python cudf.DataFrame.isin用法及代码示例
- Python cudf.DataFrame.rmul用法及代码示例
- Python cudf.DataFrame.apply用法及代码示例
- Python cudf.DataFrame.drop用法及代码示例
- Python cudf.DataFrame.where用法及代码示例
- Python cudf.DataFrame.median用法及代码示例
- Python cudf.DataFrame.to_pandas用法及代码示例
- Python cudf.DataFrame.take用法及代码示例
- Python cudf.DataFrame.tail用法及代码示例
- Python cudf.DataFrame.rfloordiv用法及代码示例
- Python cudf.DataFrame.head用法及代码示例
- Python cudf.DataFrame.count用法及代码示例
- Python cudf.DataFrame.isna用法及代码示例
- Python cudf.DataFrame.groupby用法及代码示例
- Python cudf.DataFrame.round用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.DataFrame.explode。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。