| remoteRm {bigGP} | R Documentation |
Remote Remove Objects
Description
remoteRm is used to remove objects from the global environment on the
slave processes.
Usage
remoteRm(..., list = character())
Arguments
... |
the objects to be removed, as names (unquoted) or character strings (quoted). |
list |
a character vector naming objects to be removed |
Details
This is a distributed version of rm. It removes the named
objects from all of the slave processes. Unlike rm,
remoteRm is currently not enabled to remove objects from other
than the global environment. Note that unless options(warn = 2)
is set on the slave processes, no warning is reported if one tries to
remove objects that do not exist.
See Also
remoteLs
Examples
## Not run:
bigGP.init(3)
a <- 3
b <- 7
push(a); push(b)
remoteLs()
remoteRm(a)
remoteLs()
## End(Not run)
[Package bigGP version 0.1.8 Index]