rockr.eval.source: Evaluate a R file script

Description Usage Arguments Value See Also Examples

View source: R/eval.R

Description

Upload a R file script and execute it in the remote R session with source().

Usage

1
rockr.eval.source(conn, path, json = FALSE, async = FALSE)

Arguments

conn

A rockr connection object.

path

Path to the R file script to execute.

json

Response is in JSON format or an object serialized by R. Default is FALSE.

async

R script is executed asynchronously within the session (default is FALSE). If TRUE, the value returned is the command object to look for.

Value

The unserialized result object.

See Also

Other evaluation functions: rockr.eval()

Examples

1
2
3
4
5
6
7
8
## Not run: 
conn <- rockr.connect(username='user', password='password',
                      url='https://rocker-demo.obiba.org')
rockr.open(conn)
rockr.eval.source(conn, "myscript.R")
rockr.close(conn)

## End(Not run)

rockr documentation built on March 12, 2021, 5:06 p.m.