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
value_counts will give you the number of duplicates as well.
names = df.name.value_counts() names[names > 1]