get {env} R Documentation

Return the Value of a Named Object

Description


Search by name for an object (get) or zero or more objects (mget).

Usage

get(x,
    inherits = TRUE);

Arguments

x

For get, an object name (given as a character string). For mget, a character vector of object names.

envir

where to look for the object (see ‘Details’); if omitted search as if the name of the object appeared unquoted in an expression. [as Environment]

inherits

should the enclosing frames of the environment be searched?. [as boolean]

Details

Authors

SMRUCC genomics Institute

Value

this function returns data object of type any kind.

clr value class

Examples

 get(myVarName, envir = myEnvir)

[Package env version 2.33.856.6961 Index]