grab: 'grab' extracts the contents of objects in an environment...

View source: R/str2str_functions.R

grabR Documentation

grab extracts the contents of objects in an environment based on their object names as a character vector. The object contents are stored to a list where the names are the object names.

Description

grab extracts the contents of objects in an environment based on their object names as a character vector. The object contents are stored to a list where the names are the object names.

Usage

grab(x, envir = sys.frame())

Arguments

x

character vector providing the exact names of objects in the environment envir.

envir

environment to pull the objects from. Default is the global environment.

Value

list of objects with names x.

Examples

grab(x = c("attitude","mtcars","airquality"))
grab(x = c("mean.default","mean.Date","mean.difftime"))

str2str documentation built on Nov. 21, 2023, 1:08 a.m.