Nothing
col_to_lst_col <- function(x, sep = "|", unique = TRUE, sort = TRUE) {
if (rlang::is_empty(x)) return(list())
lst_col <-
strsplit(x, split = sep, fixed = TRUE) |>
lst_col_na_to_empty()
if (unique) lst_col <- sapply(lst_col, \(.x) unique(.x))
if (sort) lst_col <- sapply(lst_col, \(.x) sort(.x))
lst_col
}
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.