📜  我只想在 pandas 中获取每个用户的第一条记录 - Python 代码示例
📅  最后修改于: 2022-03-11 14:47:19.009000             🧑  作者: Mango
代码示例2
>>> df.groupby('id').first()
value
id
1 first
2 first
3 first
4 second
5 first
6 first
7 fourth