RowDup: Identifies Duplicate Rows in Object

Description Usage Arguments Value See Also Examples

View source: R/RowDup.R

Description

Identifiction of duplicated rows contained in the data set. Displaying a table of the count of duplicate rows, the percent of duplicated rows compared with the total rows, as well as the count of unique rows.

Usage

1
RowDup(x, verbose = TRUE)

Arguments

x

A matrix-like R object

verbose

Logical operator

Value

A dataframe of results

See Also

unique

duplicated

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## Not run: 
x <- data.frame("X1" = c(1,2,3,1,2,3),
                "X2" = c(TRUE,FALSE,TRUE,TRUE,TRUE,FALSE),
                "X3"= c("a","b","c","a","b","c"))

RowDup(x)

value <- RowDup(x, verbose = FALSE)

## End(Not run)

ckornafel/expldata documentation built on Dec. 27, 2019, 2:20 a.m.