Remove(ASOR) | R Documentation |
Removes objects held out of memory permanently by unlinking the files used for the stored form of the object.
Remove(..., lib = ".R_Store", lib.loc = getwd())
... |
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 |
Objects stored out of memory are held as stored data files. These functions locate and unlink the files, thus removing the objects permanently.
Used only for side effect of removing objects.
The companion function RemoveData
and RemoveUtils
differ only in the default values of the lib
and lib.loc
arguments.
Bill Venables
none
rm, remove
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!