Pass a vector of runtime methods to invoke, together with a data frame to invoke these methods on, and invoke them.
invoke_runtime_methods(methods, df, ...)[character] A character vector of the methods to invoke.
[data.frame] The data frame to invoke the methods on.
list Results of the invocations, indexed by method names.
[any] Additional arguments to pass to the methods.
Internal example: df <- data.frame(...) invoke_runtime_methods(c("funnel_plot", "bma"), df)