Description Usage Arguments Value Author(s) See Also Examples
The contents method is used to retrieve the values stored in an environment.
1 |
object |
The environment (data table) that you want to get all contents from |
all.names |
a logical indicating whether to copy all values in |
A named list is returned, where the elements are the objects stored in the environment. The names of the elements are the names of the objects.
The all.names
argument is identical to the one used in
as.list.environment
.
R. Gentleman
1 2 3 | z <- new.env()
multiassign(letters, 1:26, envir=z)
contents(z)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.