📜  唯一行的数据帧数 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:10.192000             🧑  作者: Mango

代码示例1
1
# get the unique values (rows) by retaining last row
2
df.drop_duplicates(keep='last')