Skip to contents

This method takes a variable number of R expressions as arguments, returning a named list of scidb.expression objects.

Usage

assign_expressions(..., .require_names = TRUE)

Arguments

...

R expressions of the form new_variable = ... representing compound predicates to be applied jointly to possibly-multiple bound variables

Value

a named list of scidb.expression objects corresponding to each input expression

Examples

if (FALSE) { # \dontrun{
 scidb::assign(x = 1)
 scidb::assign(y = x + 1)
 scidb::assign(N = nchar(foo))
} # }