find_duplicate_rows: Find duplicate rows in a data frame
Description
This function identifies and reports duplicate rows in a given data frame. It first removes any rows with no values in all cells, and then compares each row to subsequent rows to check for duplicates. Duplicate rows are identified by having the same values in all columns. The function returns a message stating whether or not duplicate rows were found, and if so, the row numbers of the duplicate and original rows.
Usage
find_duplicate_rows(df)
Value
A message stating whether or not duplicate rows were found, and if so, the row numbers of the duplicate and original rows.