rockr.assign.expr: Assign an R expression

Description Usage Arguments Value See Also Examples

View source: R/assign.R

Description

Assign an R expression to a symbol in the remote R session.

Usage

1
rockr.assign.expr(conn, symbol, value, async = FALSE)

Arguments

conn

A rockr connection object.

symbol

Name of the R symbol.

value

Value to assign to the symbol: can be a primitive value or a R script to execute.

async

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

Value

The command object if async is TRUE

See Also

Other assignment functions: rockr.assign.data(), rockr.assign()

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
## Not run: 
conn <- rockr.connect(username='user', password='password',
                      url='https://rocker-demo.obiba.org')
rockr.open(conn)
rockr.assign.expr(conn, "x", 123)
rockr.assign.expr(conn, "y", "abc")
rockr.assign.expr(conn, "z", quote(tibble::tribble(
  ~colA, ~colB,
  'a',   1,
  'b',   2,
  'c',   3
)))
rockr.close(conn)

## End(Not run)

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