pandas.Index.duplicated — pandas 0.18.1 documentation (original) (raw)
Parameters:
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.
take_last : deprecated