Nothing
#' Convert List of Vectors to List of Data Frames
#'
#' @param x (required, list of vectors) Default: NULL
#'
#' @return List of data frames
#' @export
#' @autoglobal
#' @family internal
utils_prepare_vector_list <- function(
x = NULL
){
if(
utils_check_list_class(
x = x,
expected_class = "vector"
) == FALSE
){
return(x)
}
x <- lapply(
X = x,
FUN = function(x){
data.frame(
x = x
)
}
)
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.