Objects(ASOR)R Documentation

List objects held out of memory

Description

These functions allow objects stored out of memory to be listed. They combine the action of objects with finding where on the search path the collection is held.

Usage

Objects(lib = ".R_Store", lib.loc = getwd())

Arguments

lib Name of storage directory - may be quoted or unquoted
lib.loc Full path to directory given in lib

Details

Used to list objects held out of memory.

Value

A character string vector of object names.

Note

Will attach a default collection of objects if none already attached.

Used to list names of objects, but also to locate the collection on the search path.

ObjectsData and ObjectsUtils differ only in the default values of the lib and lib.loc arguments.

Author(s)

Bill Venables

References

none

See Also

objects, ls

Examples

obj1 <- rnorm(1000)
obj2 <- rt(1000, 5)
Save(obj1, obj2)
Objects()
objects()

[Package ASOR version 0.1 Index]