Description Usage Arguments Details Value Author(s) See Also Examples
This function supports objectBrowser
by converting a
vector of selected object names to a list of lists with object names
and the corresponding objects.
1 | objNameToList(objNames, env)
|
objNames |
character vector giving the names of objects. |
env |
an R environment where R objects are stored |
Each list in the list that is going to be returned contains a name for the object and the real value of the object. If the object name is a package name, the contents of the package will be the value associated with the package name.
A list of lists each with a name
and an obj
component.
Jianhua (John) Zhang
1 2 3 4 5 6 7 | # Create two R objects
obj1 <- c("aaa", "bbb", "ccc")
env1 <- new.env(parent = baseenv())
# Get a list containing the two objects
nl <- objNameToList(c("obj1", "env1"), parent.frame())
str(nl)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.