Learn R Programming

artma (version 0.3.3)

invoke_runtime_methods: Invoke methods

Description

Pass a vector of runtime methods to invoke, together with a data frame to invoke these methods on, and invoke them.

Usage

invoke_runtime_methods(methods, df, ...)

Value

[list] Results of the invocations, indexed by method names.

Internal example: df <- data.frame(...) invoke_runtime_methods(c("funnel_plot", "bma", "fma"), df)

Arguments

methods

[character] A character vector of the methods to invoke.

df

[data.frame] The data frame to invoke the methods on.

...

[any] Additional arguments to pass to the methods.