#' Returns collective variables from all datasets
#'
#' @return
#' @export
#'
#'
get_all_variables <- function() {
#
variables <- c()
#
for (dataset in get_datasets()) {
variables <- unique(c(variables, get_variables(variables = All,
dataset = dataset)))
}
return (variables)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.