Nothing
# R/privacy.R
#' @keywords internal
#' @noRd
.generate_fake_with_preset <- function(data, n = 30, level = c("low","medium","high"), seed = NULL) {
level <- match.arg(level)
cfg <- switch(level,
low = list(category_mode = "preserve", column_mode = "keep", numeric_mode = "range"),
medium = list(category_mode = "generic", column_mode = "generic", numeric_mode = "range"),
high = list(category_mode = "generic", column_mode = "generic", numeric_mode = "distribution")
)
do.call(generate_fake_data, c(list(data = data, n = n, seed = seed), cfg))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.