Detect duplicate observations in a data set in Stata

You can check for duplicate observations in Stata in the following ways:

  • The isid command can detect duplicate observations:
    . isid x1 x2 x3
  • The duplicates command can list and flag duplicate observations. The list subcommand lists the duplicate observations:
    . duplicates list x1 x2 x3
  • The tag subcommand and the generate() option flag duplicate observations by assigning 1 to duplicacy in the variable duple:
    . duplicates tag x1 x2 x3, generate(duple)

If you have questions about using statistical and mathematical software at Indiana University, contact the UITS Research Applications and Deep Learning team.

This is document aqea in the Knowledge Base.
Last modified on 2023-07-05 16:49:51.