exportMatch: exportMatch

Description Usage Arguments Value Examples

Description

Exports the found matches into a data file for further manual inspection. Sort the matched observations by their respective levensthein distance and delete non-matches from the file.

Usage

1

Arguments

match

match structure

file

file name

...

further parameters given to export method oth the library rio

Value

a file

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
set.seed(0)
library("findMatch")
# create two data sets where the second consists of
# 200 obs. only in t1, 200 obs. in t1 and t2 and
# 100 obs. only in t2
n <- list(c(200, 1), c(200, 1, 2), c(100, 2))
x <- generateTestData(n)
#
match <- findMatch(x, c('code', 'code'))
exportMatch(match, 'match.xlsx', overwrite=TRUE)

sigbertklinke/findMatch documentation built on July 12, 2019, 9:22 a.m.