lsall: List Object Details

Description Usage Arguments Value Author(s) See Also Examples

Description

Return a data.frame with a list of all objects of a specified environmet.

Usage

1
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.

Author(s)

Sven E. Templer

See Also

ls

Examples

1
2
3
4
5
6
7
8
9
#

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

#

miscset documentation built on May 2, 2019, 4:01 a.m.