Operators Module

Custom operators that make composing and working with R symbolic expressions easier.

Functions and values

Function or value Description

key => value

Full Usage: key => value

Parameters:
    key : string
    value : 'a

Returns: string * obj

When calling an R function, use the => operator in a list to set a parameter: [ "someparam" => 2 ]

key : string
value : 'a
Returns: string * obj

expr ? mem

Full Usage: expr ? mem

Parameters:
Returns: SymbolicExpression
Modifiers: inline

Opens a dynamic property of an R symbolic expression. Supports named lists, S4 objects, and dataframes. If a dataframe, the column is extracted by name.

expr : SymbolicExpression
mem : string
Returns: SymbolicExpression