Nothing
#' Create site models from their names
#' @inheritParams default_params_doc
#' @return one or more site models
#' @seealso Use \link{create_site_model} to create a site model
#' @examples
#' check_empty_beautier_folder()
#'
#' create_site_models_from_names(get_site_model_names())
#'
#' check_empty_beautier_folder()
#' @author Richèl J.C. Bilderbeek
#' @export
create_site_models_from_names <- function(site_model_names) {
site_models <- list()
for (i in seq_along(site_model_names)) {
site_model_name <- site_model_names[i]
site_models[[i]] <- create_site_model_from_name(site_model_name)
}
site_models
}
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.