Attach(ASOR)R Documentation

Attach data store

Description

Attach collection of objects saved out of memory to search path, or create a new, empty data store.

Usage

Attach(lib = ".R_Store", lib.loc = getwd(), pos = 2, uniquely = TRUE, ...)

Arguments

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.

Details

Logically a method for attach except for the fact that attach is not a generic function.

Value

Used only for side effect.

Note

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.

Author(s)

Bill Venables

References

None

See Also

Objects, Remove, Save

Examples

Alpha <- rnorm(1000000)
Beta <- rnorm(1000000)
Attach(lib = RandomData)
Save(Alpha, Beta, lib = RandomData)
detach(2)
Objects(lib = RandomData)

[Package ASOR version 0.1 Index]