November 2017
Beginner to intermediate
366 pages
7h 59m
English
The epiWeights function implements the weights-based method. R documentation has a nice introduction to the weights-based method:
> help("epiWeights")
The mechanism of invoking and finally generating the results is very similar to how we did it using emWeights:
library(RecordLinkage)data("RLdata500")# weight calculationrec.pairs <- compare.dedup(RLdata500 ,blockfld = list(1, 5:7) ,strcmp = c(2,3,4) ,strcmpfun = levenshteinSim)pairs.weights <- epiWeights(rec.pairs)hist(pairs.weights$Wdata)
One again, the distribution is similar to our histogram from the emWeights method. Let's ...
Read now
Unlock full access