#' Split labels
#'
#' Splits labels
#' @param labels String of labels separated by comma, no default
#' @export
SplitLables <- function(
labels
)
{
## Remove quotation marks and split on commas
labels <- trimws(gsub("\\\"", "", unlist(strsplit(labels, ","))))
return (labels)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.