Nothing
# AUXILIARY FUNCTIONS
# 1. conversion : input type conversion
# 1. aux.conversion -------------------------------------------------------
#' @keywords internal
#' @noRd
aux.conversion <- function(x){
if (is.character(x)){
x = as.numeric(as.factor(unlist(strsplit(x,split=""))))
} else if (is.factor(x)){
x = as.numeric(x)
} else {
x = as.numeric(as.factor(x))
}
return(round(x))
}
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.