Nothing
collapse_chapter_structure_to_chr <- function(data, sep = ",", sep2 = ",", last = ",", trunc = 35) {
data |>
dplyr::distinct(dplyr::pick(tidyselect::everything())) |>
lapply(FUN = function(col) {
col <- as.character(col)
uniques <- unique(col)
uniques <- uniques[!is.na(uniques)]
cli::ansi_collapse(uniques, sep = sep, sep2 = sep2, last = last, trunc = trunc, width = Inf)
}) |>
unlist()
}
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.