REnv Type

The object represents an R environment loaded from RData file. This type is typically used through an `RData` type provider. To get a statically typed R environment for a given file, use `RData<"C:\\myfile.rdata">`.

Constructors

Constructor Description

REnv(fileName)

Full Usage: REnv(fileName)

Parameters:
    fileName : string

Returns: REnv
fileName : string
Returns: REnv

Instance members

Instance member Description

this.Environment

Full Usage: this.Environment

Returns: SymbolicExpression

Returns the underlying R environment, represented as `SymbolicExpression`

Returns: SymbolicExpression

this.Get(name)

Full Usage: this.Get(name)

Parameters:
    name : string

Returns: SymbolicExpression

Get a value from the R environment as `SymbolicExpression` (This is equivalent to calling `R.get` function)

name : string
Returns: SymbolicExpression

this.Keys

Full Usage: this.Keys

Returns: string[]

Returns the keys of all values available in the environment (This is equivalent to calling `R.ls` function)

Returns: string[]