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
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]