gpt4 book ai didi

python - 如何在 Pandas 中找到重复项?

转载 作者:行者123 更新时间:2023-12-05 08:57:13 24 4
gpt4 key购买 nike

当我使用时,我有一个大约 52000 行的数据框,其中有一些重复项

df_drop_duplicates() 

我丢失了大约 1000 行,但我不想删除这些行我想知道哪些是重复行

最佳答案

你可以使用 duplicated为此:

df[df.duplicated()]

您可以从文档中为您想要的内容指定keep参数:

keep : {‘first’, ‘last’, False}, default ‘first’

  • first : Mark duplicates as True except for the first occurrence.
  • last : Mark duplicates as True except for the last occurrence.
  • False : Mark all duplicates as True.

关于python - 如何在 Pandas 中找到重复项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34810358/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com