CreateAS16: Creating Records with Armknechts method create

View source: R/RcppExports.R

CreateAS16R Documentation

Creating Records with Armknechts method create

Description

This method generates a new bit vector out of an existing Bloom Filter. Building and comparisons are both possible with CompareAS16.

Usage

CreateAS16(ID, data, password)

Arguments

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".

Value

A character vector containing bit vectors created as described in the original publication.

Source

Armknecht, F., Schnell, R. (unpublished): Privacy Preserving Record Linkage Based on Bloom Filters and Codes. Working Paper.

See Also

CompareAS16, CreateBF, CreateCLK

Examples

# 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")



PPRL documentation built on Nov. 10, 2022, 5:41 p.m.

Related to CreateAS16 in PPRL...