pandas.Series.explode#
- Series.explode(ignore_index=False)[源代码][源代码]#
将类似列表的每个元素转换为一行。
- 参数:
- ignore_indexbool, 默认 False
如果为真,生成的索引将被标记为 0, 1, …, n - 1。
- 返回:
- 系列
将展开的列表转换为行;这些行的索引将被复制。
参见
Series.str.split
在指定的分隔符上拆分字符串值。
Series.unstack
Unstack,又名 pivot,将带有 MultiIndex 的 Series 转换为 DataFrame。
DataFrame.melt
将 DataFrame 从宽格式透视为长格式。
DataFrame.explode
将 DataFrame 从类似列表的列展开为长格式。
备注
此例程将爆炸包括列表、元组、集合、Series 和 np.ndarray 的类列表对象。子集行的结果 dtype 将是对象。标量将保持不变,空列表对象将导致该行为 np.nan。此外,当爆炸集合时,输出中元素的顺序将是不确定的。
更多示例请参考 用户指南。
例子
>>> s = pd.Series([[1, 2, 3], "foo", [], [3, 4]]) >>> s 0 [1, 2, 3] 1 foo 2 [] 3 [3, 4] dtype: object
>>> s.explode() 0 1 0 2 0 3 1 foo 2 NaN 3 3 3 4 dtype: object