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 |
i |
A vector of integers to indicate |
... |
Additional arguments passed to |
Value
Executed analysis based on the analysis plan.
Examples
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)
}
[Package metalite version 0.1.4 Index]