lsall {miscset} | R Documentation |
List Object Details
Description
Return a data.frame with a list of all objects of a specified environmet.
Usage
lsall(envir = .GlobalEnv, ...)
Arguments
envir |
An environment where to look for objects. |
... |
Arguments forwarded to |
Value
Returns a data.frame
with object names, lengths, classes, modes
and sizes or NULL
if the environment is empty.
Author(s)
Sven E. Templer
See Also
Examples
#
lsall()
obj1 <- 1:3
obj2 <- data.frame(1:3)
obj3 <- list(1:3)
lsall()
#
[Package miscset version 1.1.0 Index]