用法:
Series.explode(ignore_index=False)
将 list-like 的每个元素转换为一行。
- ignore_index:布尔值,默认为 False
如果为 True,则生成的索引将标记为 0、1、...、n - 1。
- Series
将列表分解为行;这些行的索引将被复制。
参数:
返回:
注意:
此例程将爆炸list-likes,包括列表、元组、集合、系列和 np.ndarray。子集行的结果 dtype 将是对象。标量将原封不动地返回,空的 list-likes 将导致该行的 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
相关用法
- Python pandas.Series.expanding用法及代码示例
- Python pandas.Series.eq用法及代码示例
- Python pandas.Series.empty用法及代码示例
- Python pandas.Series.ewm用法及代码示例
- Python pandas.Series.equals用法及代码示例
- Python pandas.Series.add_prefix用法及代码示例
- Python pandas.Series.map用法及代码示例
- Python pandas.Series.max用法及代码示例
- Python pandas.Series.str.isdecimal用法及代码示例
- Python pandas.Series.str.get用法及代码示例
- Python pandas.Series.to_csv用法及代码示例
- Python pandas.Series.dt.day_name用法及代码示例
- Python pandas.Series.sample用法及代码示例
- Python pandas.Series.head用法及代码示例
- Python pandas.Series.plot.line用法及代码示例
- Python pandas.Series.to_pickle用法及代码示例
- Python pandas.Series.between_time用法及代码示例
- Python pandas.Series.reindex_like用法及代码示例
- Python pandas.Series.dt.is_year_end用法及代码示例
- Python pandas.Series.repeat用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.explode。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。