I have a pandas.DataFrame with a column called name containing strings. I would like to get a list of the names which occur more than once in the c
pandas.DataFrame
name
A one liner can be:
x.set_index('name').index.get_duplicates()
the index contains a method for finding duplicates, columns does not seem to have a similar method..