Remove(ASOR)R Documentation

Reove objects stored out of memory

Description

Removes objects held out of memory permanently by unlinking the files used for the stored form of the object.

Usage

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

Arguments

... objects to be removed, either as names or character strings
lib directory name for out of memory collection
lib.loc full path name for directory lib

Details

Objects stored out of memory are held as stored data files. These functions locate and unlink the files, thus removing the objects permanently.

Value

Used only for side effect of removing objects.

Note

The companion function RemoveData and RemoveUtils differ only in the default values of the lib and lib.loc arguments.

Author(s)

Bill Venables

References

none

See Also

rm, remove

Examples

Alpha <- 1
Beta <- 2
Delta <- 4
Save(Alpha, Beta, Delta)
Remove(Alpha)  # remove two objects permanently
Remove(Objects())  # Clear out of memory store entirely and permanently!

[Package ASOR version 0.1 Index]