Objects(ASOR) | R Documentation |
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.
Objects(lib = ".R_Store", lib.loc = getwd())
lib |
Name of storage directory - may be quoted or unquoted |
lib.loc |
Full path to directory given in lib |
Used to list objects held out of memory.
A character string vector of object names.
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.
Bill Venables
none
objects, ls
obj1 <- rnorm(1000) obj2 <- rt(1000, 5) Save(obj1, obj2) Objects() objects()