Summary statistics of the original and the perturbed data set
report(
obj,
outdir = tempdir(),
filename = "SDC-Report",
title = "SDC-Report",
internal = FALSE,
verbose = FALSE
)
an object of class sdcMicroObj-class
or reportObj
output folder
output filename
Title for the report
TRUE/FALSE, if TRUE a detailed internal report is produced, else a non-disclosive overview
TRUE/FALSE, if TRUE, some additional information is printed.
The application of this function provides you with a html-report for your sdcMicro object that contains useful summaries about the anonymization process.
# \donttest{
data(testdata2)
sdc <- createSdcObj(
dat = testdata2,
keyVars = c("urbrur", "roof", "walls", "water", "electcon", "relat", "sex"),
numVars = c("expend", "income", "savings"),
w = "sampling_weight"
)
report(sdc)
# }