remoteRm | R Documentation |
remoteRm
is used to remove objects from the global environment on the
slave processes.
remoteRm(..., list = character())
... |
the objects to be removed, as names (unquoted) or character strings (quoted). |
list |
a character vector naming objects to be removed |
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.
remoteLs
## Not run:
bigGP.init(3)
a <- 3
b <- 7
push(a); push(b)
remoteLs()
remoteRm(a)
remoteLs()
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.