Nothing
pack <- function(x, alphabet,
NA_letter = getOption("tidysq_NA_letter"),
ignore_case = FALSE) {
UseMethod("pack")
}
#' @export
pack.character <- function(x, alphabet,
NA_letter = getOption("tidysq_NA_letter"),
ignore_case = FALSE) {
CPP_pack_STRING(x, alphabet, NA_letter, ignore_case)
}
#' @export
pack.list <- function(x, alphabet,
NA_letter = getOption("tidysq_NA_letter"),
ignore_case = FALSE) {
pack_fun <- CPP_pack_RAWS
if (length(x) > 0) {
pack_fun <- switch (mode(x[[1]]),
character = CPP_pack_STRINGS,
numeric = CPP_pack_INTS,
raw = CPP_pack_RAWS
)
}
pack_fun(x, alphabet, NA_letter, ignore_case)
}
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.