# NOT RUN {
# }
# NOT RUN {
dir_conf <- paste0(tempdir(), "/conf")
dir.create(dir_conf, recursive = TRUE)
# ex fun
fun_path = system.file("ex_fun/sb_fun_ex.R", package = "shinybatch")
fun_name = "sb_fun_ex"
# create 2 confs
conf_1 <- configure_task(dir_path = dir_conf,
conf_descr = list(title_1 = "my_title_1",
description_1 = "my_descr_1"),
fun_path = fun_path,
fun_name = fun_name,
fun_args = list(x = 0,
y = 0:4,
z = iris),
priority = 1)
conf_2 <- configure_task(dir_path = dir_conf,
conf_descr = list(title_2 = "my_title_2",
description_2 = "my_descr_2"),
fun_path = fun_path,
fun_name = fun_name,
fun_args = list(x = 1,
y = 0:4,
z = iris),
priority = 2)
# retrieve information about all tasks in main directory
dir_conf_to_dt(dir_conf, allowed_run_info_cols = FALSE)
dir_conf_to_dt(dir_conf,
allow_descr = FALSE,
allow_args = FALSE)
dir_conf_to_dt(dir_conf,
allowed_run_info_cols = c("status", "date_creation"),
allowed_function_cols = c("path"))
dir_conf_to_dt(dir_conf,
allowed_run_info_cols = NULL,
allowed_function_cols = NULL)
dir_conf_to_dt(dir_conf,
allowed_run_info_cols = "",
allowed_function_cols = "",
allow_descr = FALSE,
allow_args = FALSE)
# or just on some tasks ?
info_conf_1 <- conf_1
info_conf_2 <- yaml::read_yaml(file.path(conf_2$dir, "conf.yml"))
conf_to_dt(list(info_conf_1, info_conf_2))
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab