do.call {env} R Documentation

Execute a Function Call

Description


do.call constructs and executes a function call from a name or
a function and a list of arguments to be passed to it.

Usage

do.call(what,
    calls = NULL,
    ... = NULL);

Arguments

what

-

calls

either a function or a non-empty character string naming the function to be called. [as string]

args

a list of arguments to the function call. The names attribute of args gives the argument names.

envir

an environment within which to evaluate the call. This will be most useful if what is a character string and the arguments are symbols or quoted expressions. [as Environment]

Details

Authors

SMRUCC genomics Institute

Value

The result of the (evaluated) function call.

clr value class

Examples


[Package env version 2.33.856.6961 Index]