grid.share {GridR}R Documentation

grid.share

Description

grid.share shares functions and variables with other users on your computer. If an nfs is installed, they can be shared them with remote users.

Usage

grid.share(varName)

Arguments

varName The variable or functionname in " " which should be shared

Details

If this function is executed, varName is stored to sharedDir which must be specified in the config file or the grid.init function.

If grid.init is called, a taskCallback is added which checks each time a command is entered to R if a new function or variable is stored to the sharedDir. If so it is loaded into R.

Be Careful: it overrides the old value automatically!

Author(s)

Malte Lohmeyer

Examples

library("GridR")
grid.init(service="variableSharing", sharedDir="GridRTmp/share")
x=2
grid.share("x")

[Package GridR version 0.9.1 Index]