Learn R Programming

bigGP (version 0.1.8)

remoteLs: Remote List Objects

Description

remoteLs returns the names of the objects in the global environment on each slave process, as a list of character vectors.

Usage

remoteLs(all.names = FALSE)

Value

A list, with each element a vector of character strings giving the names of the objects on a given slave process.

Arguments

all.names

a logical value. If 'TRUE', all object names are returned. If 'FALSE', names which begin with a '.' are omitted.

See Also

remoteRm

Examples

Run this code
if (FALSE) {
bigGP.init(3)
a <- 3
b <- 7
push(a); push(b)
remoteLs()
remoteRm(a)
remoteLs()
}

Run the code above in your browser using DataLab