Description Usage Arguments Value Note Author(s) Examples
Combines two object of class "RecLinkData"
or "RecLinkResult"
by concatenating comparison patterns
and, if available, weights and classification results.
1 2 3 4 5 6 7 | x %append% y
## S4 method for signature 'RecLinkData,RecLinkData'
x %append% y
## S4 method for signature 'RecLinkResult,RecLinkResult'
x %append% y
|
x, y |
The objects to combine. |
An object with class corresponding to the input objects which represents
the concatenation of x
and y
. Its
component pairs
is rbind(x$pairs, y$pairs)
. If both x
and y
have weights stored in component Wdata
, the result
gets c(x$Wdata, y$Wdata)
as component Wdata
. For the
"RecLinkResult"
method, the result also includes the
concatenation of the predicted classes in x
and y
as
component prediction
.
The methods perform only a minimum of integrity checks, so the user has to make sure that the underlying data, the formats of comparison patterns (e.g. excluded columns) and the type of weights (method and parameters of weight calculation) match.
Andreas Borg, Murat Sariyar
1 2 3 4 5 6 7 | data(RLdata500)
rpairs1=compare.dedup(RLdata500, blockfld=1, identity = identity.RLdata500)
rpairs2=compare.dedup(RLdata500, blockfld=3, identity = identity.RLdata500)
summary(rpairs1)
summary(rpairs2)
summary(rpairs1 %append% rpairs2)
|
Loading required package: DBI
Loading required package: RSQLite
Loading required package: ff
Loading required package: bit
Attaching package bit
package:bit (c) 2008-2012 Jens Oehlschlaegel (GPL-2)
creators: bit bitwhich
coercion: as.logical as.integer as.bit as.bitwhich which
operator: ! & | xor != ==
querying: print length any all min max range sum summary
bit access: length<- [ [<- [[ [[<-
for more help type ?bit
Attaching package: 'bit'
The following object is masked from 'package:base':
xor
Attaching package ff
- getOption("fftempdir")=="/work/tmp/tmp/RtmpCoXZp4"
- getOption("ffextension")=="ff"
- getOption("ffdrop")==TRUE
- getOption("fffinonexit")==TRUE
- getOption("ffpagesize")==65536
- getOption("ffcaching")=="mmnoflush" -- consider "ffeachflush" if your system stalls on large writes
- getOption("ffbatchbytes")==16777216 -- consider a different value for tuning your system
- getOption("ffmaxbytes")==536870912 -- consider a different value for tuning your system
Attaching package: 'ff'
The following objects are masked from 'package:bit':
clone, clone.default, clone.list
The following objects are masked from 'package:utils':
write.csv, write.csv2
The following objects are masked from 'package:base':
is.factor, is.ordered
Loading required package: ffbase
Attaching package: 'ffbase'
The following objects are masked from 'package:ff':
[.ff, [.ffdf, [<-.ff, [<-.ffdf
The following objects are masked from 'package:base':
%in%, table
RecordLinkage library
[c] IMBEI Mainz
Attaching package: 'RecordLinkage'
The following object is masked from 'package:ff':
clone
The following object is masked from 'package:bit':
clone
Deduplication Data Set
500 records
1202 record pairs
34 matches
1168 non-matches
0 pairs with unknown status
Deduplication Data Set
500 records
2300 record pairs
34 matches
2266 non-matches
0 pairs with unknown status
Deduplication Data Set
500 records
3502 record pairs
68 matches
3434 non-matches
0 pairs with unknown status
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.