pandas.Series.list.flatten #

系列.列表.展平( ) [来源] #

展平列表值。

返回
熊猫系列

该系列所有列表的数据均趋平。

例子

>>> import pyarrow as pa
>>> s = pd.Series(
...     [
...         [1, 2, 3],
...         [3],
...     ],
...     dtype=pd.ArrowDtype(pa.list_(
...         pa.int64()
...     ))
... )
>>> s.list.flatten()
0    1
1    2
2    3
3    3
dtype: int64[pyarrow]