Nothing
.table_sorted <- function(semtype_vec) {
semtypes <- stringr::str_split(semtype_vec, ",") %>% unlist()
tab <- sort(table(semtypes), decreasing = TRUE)
list(tab)
}
.table_sorted_from_list <- function(l) {
result <- l %>% unlist() %>% table() %>% sort(decreasing = TRUE)
list(result)
}
.unique_as_list <- function(x) {
list(unique(x))
}
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.