View source: R/checkDuplicated.R
checkDuplicated | R Documentation |
To inspect duplicated records in a data.frame.
checkDuplicated(
data,
f,
dontshow = character(length = 0L),
file = tempfile(pattern = "checkDuplicated_", fileext = ".xlsx"),
...
)
data |
data.frame |
f |
formula,
criteria of duplication, e.g.,
use |
dontshow |
(optional) character scalar or vector,
variable names to be omitted in output diagnosis |
file |
character scalar, path of diagnosis file, print out of substantial duplicates |
... |
additional parameters, currently not in use |
Function checkDuplicated returns a data.frame.
(d1 = data.frame(A = c(1, 1), B = c(NA_character_, 'text')))
(d2 = data.frame(A = c(1, 2), B = c(NA_character_, 'text')))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.