pandas.Series.list.flatten#
- Series.list.flatten()[源代码]#
展平列表值。
- 返回:
- pandas.Series
系列中所有列表的数据被展平。
参见
ListAccessor.__getitem__
Index or slice values in the Series.
例子
>>> import pyarrow as pa >>> s = pd.Series( ... [ ... [1, 2, 3], ... [3], ... ], ... dtype=pd.ArrowDtype(pa.list_(pa.int64())), ... ) >>> s.list.flatten() 0 1 0 2 0 3 1 3 dtype: int64[pyarrow]