meta_run {metalite}R Documentation

Execute analysis based on the analysis plan

Description

Execute analysis based on the analysis plan

Usage

meta_run(meta, i = NULL, ...)

Arguments

meta

A meta_adam object.

i

A vector of integers to indicate i-th analysis in meta$plan.

...

Additional arguments passed to ⁠[spec_call_program()]⁠.

Value

Executed analysis based on the analysis plan.

Examples

meta <- meta_example()
ae_summary <- function(...) {
  paste("results of", deparse(match.call(), nlines = 1))
}
ae_specific <- function(...) {
  paste("results of", deparse(match.call(), nlines = 1))
}
meta_run(meta)
meta_run(meta, i = 2)

[Package metalite version 0.1.3 Index]