Nothing
#' Convert list elements to tibbles.
#'
#' This helper function takes a list of elements and converts each element into
#' a tibble.
#'
#' @param values `list`. The list whose elements must be converted to tibbles.
#'
#' @return A list where each original element has been converted to a tibble.
#'
#' @importFrom checkmate assert_list
#' @importFrom purrr map
#'
#' @keywords internal
#' @noRd
#'
.valuesToTibbles <- function(values) {
assert_list(values)
values <- map(values, ~ .valueToTibble(value = .x))
return(values)
}
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.