Attach(ASOR) | R Documentation |
Attach collection of objects saved out of memory to search path, or create a new, empty data store.
Attach(lib = ".R_Store", lib.loc = getwd(), pos = 2, uniquely = TRUE, ...)
lib |
library directory name |
lib.loc |
absolute path to library directory |
pos |
position number on search path where collection is to be attached |
uniquely |
Set to true if at most one copy of the collection is to be visible on the search path |
... |
Additional arguments used in debugging only. |
Logically a method for attach
except for the fact that
attach
is not a generic function.
Used only for side effect.
AttachData
and AttachUtils
differ only in the
default values for the first two arguments. They are notionall to be
used for centrel out of memory storage of large data objects and
useful functions prior to enclosing them in a package, respectively.
Bill Venables
None
Objects, Remove, Save
Alpha <- rnorm(1000000) Beta <- rnorm(1000000) Attach(lib = RandomData) Save(Alpha, Beta, lib = RandomData) detach(2) Objects(lib = RandomData)