如何列出每个熊猫组的值?
在本文中,我们将看到如何显示数据框所在的每个组的所有值。首先使用 DataFrame.groupby() 方法将数据帧分成组。然后我们修改它,使每个组包含列表中的值。
首先,让我们创建一个数据框:
python 3
# import pandas library
import pandas as pd
# create a dataframe
df = pd.DataFrame({'a': ['A', 'A', 'B',
'B', 'B', 'C',
'C', 'D'],
'b': [1, 2, 5,
3, 5, 4,
8, 6]})
# show the dataframe
df