#' Loads the parameter space into the environment for simulations
#'
#' @inheritParams default_params_doc
#' @author Joshua Lambert, Pedro Neves
#' @return tibble parameter space.
#' @export
load_param_space <- function(param_space_name) {
file_domain <-
"https://raw.githubusercontent.com/xieshu95/robustness/master/data/"
file <- paste0(file_domain, param_space_name, ".csv")
param_space <- readr::read_csv2(
file = file
)
return(param_space)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.