Learn R Programming

metalite (version 0.1.4)

meta_run: Execute analysis based on the analysis plan

Description

Execute analysis based on the analysis plan

Usage

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

Value

Executed analysis based on the analysis plan.

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()].

Examples

Run this code
if (interactive()) {
  meta <- meta_example()
  ae_summary <- function(...) {
    "results of ae_summary"
  }
  ae_specific <- function(...) {
    "results of ae_specific"
  }
  meta_run(meta)
  meta_run(meta, i = 2)
}

Run the code above in your browser using DataLab