CreateAS16 | R Documentation |
This method generates a new bit vector out of an existing Bloom Filter. Building and comparisons are both possible with CompareAS16
.
CreateAS16(ID, data, password)
ID |
A character vector or integer vector containing the IDs of the second data.frame. |
data |
A character vector containing the original bit vectors created by any Bloom Filter-based method. |
password |
A string containing the password to be used for both "create" and "compare". |
A character vector containing bit vectors created as described in the original publication.
Armknecht, F., Schnell, R. (unpublished): Privacy Preserving Record Linkage Based on Bloom Filters and Codes. Working Paper.
CompareAS16
,
CreateBF
,
CreateCLK
# Load test data testFile <- file.path(path.package("PPRL"), "extdata/testdata.csv") testData <- read.csv(testFile, head = FALSE, sep = "\t", colClasses = "character") # Create Bloom Filter testData <- CreateBF(ID = testData$V1, testData$V7, k = 20, padding = 1, q = 2, l = 1000, password = "(H]$6Uh*-Z204q") # Create the new Bloom Filter testAS <- CreateAS16(testData$ID, testData$CLKs, password = "khäuds")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.