Skip to content

Instantly share code, notes, and snippets.

@nkrumm
Created August 15, 2013 22:25
Show Gist options
  • Save nkrumm/6245527 to your computer and use it in GitHub Desktop.
Save nkrumm/6245527 to your computer and use it in GitHub Desktop.
Show all duplicated lines in a dataframe
pd.concat(g for _, g in df.groupby("duplicated_key_name") if len(g) > 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment