orderly_batch: Run a batch of reports.

Description Usage Arguments Value See Also Examples

View source: R/batch.R

Description

Run one report multiple times with different sets of parameters.

Usage

1
orderly_batch(name = NULL, parameters = NULL, ...)

Arguments

name

Name of the report to run (see orderly_list()). A leading src/ will be removed if provided, allowing easier use of autocomplete. Alternatively, the default of NULL is useful if you have already set the working directory to be the source directory.

parameters

Data frame of parameters passed to report. Each row represents a parameter set to be passed to one report run.

...

Additional args passed to orderly_run()

Value

List of ids of newly created reports

See Also

orderly_run() for details of report running

Examples

1
2
3
path <- orderly::orderly_example("demo")
params <- data.frame(nmin = c(0.2, 0.25))
ids <- orderly::orderly_batch("other", params, root = path)

orderly documentation built on Sept. 22, 2021, 5:09 p.m.