dupes_rm_1way: Remove previously documented publication records

Description Usage Arguments Details Value Examples

Description

Takes output of dupes_find_1way, and returns a set of combined records with duplicate entries removed.

Usage

1
dupes_rm_1way(x, ignore_IDs = NULL)

Arguments

x

The output of dupes_find_1way

ignore_IDs

A set of match IDs that will be ignored when removing duplicate records. These should be identified by manually inspecting the output of dupes_return.

Details

After running dupes_find_1way, records from old and new are combined and pairs of entries matched between old and new are marked with identical match IDs specified in the match_ID column. This function removes the duplicate entry that originated from the new set of records.

Value

An updated version of x, with duplicate records removed.

Examples

1
2
3
4
5
6
7
8
## Not run: 
old <- form_mm_recs[1:10, ]
new <- form_mm_recs[8:12, ]
test <- dupes_find_1way(old, new, c(1, 3))
dupes <- dupes_return(test)
out <- dupes_rm_1way(test)

## End(Not run)

graggsd/sysreviewR documentation built on May 16, 2019, 2:52 a.m.