Learn R Programming

dynwrap (version 1.2.1)

get_ti_methods: Return all TI that are installed in one or more packages

Description

Return all TI that are installed in one or more packages

Usage

get_ti_methods(
  method_ids = NULL,
  as_tibble = TRUE,
  ti_packages = ifelse(requireNamespace("dynmethods", quietly = TRUE), "dynmethods",
    "dynwrap"),
  evaluate = FALSE
)

Arguments

method_ids

The method identifiers. NULL if listing all methods

as_tibble

Whether or not to return the ti_methods as a tibble

ti_packages

In which packages to look for TI methods. This will by default look into dynmethods if it is installed, otherwise in dynwrap.

evaluate

Whether to evaluate the functions

Value

A dataframe (or list if as_tibble = FALSE) containing the name (id) of the TI method and the function (fun) to load in the method.

Examples

Run this code
# NOT RUN {
head(get_ti_methods())

# }

Run the code above in your browser using DataLab