Description Usage Arguments Value Examples
Takes output generated by dupes_find
, and returns a
data.frame
containing only potentially duplicated records.
1 | dupes_return(x)
|
x |
The ouput of |
A data.frame
containing only entries of the original dataset
identified as duplicate entries. This is meant to facilitate manual
inspection of potential duplicates. Aberrantly identified duplicates
may subsequently be spared when running dupes_rm
by indicating their match IDs in dupes_rm
's
ignore_IDs
argument.
1 2 3 4 5 6 7 | ## Not run:
test <- rbind(form_mm_recs, form_mm_recs)
test <- dupes_find(test, c(1, 3))
dupes <- dupes_return(test)
out <- dupes_rm(test)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.