pandas.DataFrame.duplicated

DataFrame.duplicated(selfsubset=Nonekeep='first')

Return boolean Series denoting duplicate rows, optionally only considering certain columns.

 

Parameters:
subset column label or sequence of labels, optional

Only consider certain columns for identifying duplicates, by default use all of the columns

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.
Returns:
Series

posted on 2021-03-05 20:37  朴素贝叶斯  阅读(69)  评论(0编辑  收藏  举报

导航