Learn R Programming

miscset (version 1.0.0)

lsall: 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 ls.

Value

Returns a data.frame with object names, lengths, classes, modes and sizes or NULL if the environment is empty.

See Also

ls

Examples

Run this code
#

lsall()
obj1 <- 1:3
obj2 <- data.frame(1:3)
obj3 <- list(1:3)
lsall()

#

Run the code above in your browser using DataLab