check_duplicate_rows: Check for Duplicate Rows in a Data Frame
Description
This function checks for duplicate rows in a data frame.
Usage
check_duplicate_rows(.data)
Value
A logical vector indicating whether each row is a duplicate or not.
Arguments
.data
A data frame.
Author
Steven P. Sanderson II, MPH
Details
This function checks for duplicate rows by comparing each row in the
data frame to every other row. If a row is identical to another row, it is
considered a duplicate.