empty_list_check <- function(x) { if (length(x) == 0 & is.list(x)) { return(NA) } else if (length(x) > 1) { return(paste(x, collapse = ",")) } else { return(x) } }
Add the following code to your website.
REMOVE THIS Copy to clipboard
For more information on customizing the embed code, read Embedding Snippets.