R Type Provider


REnv

Namespace: RProvider

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

ConstructorDescription
new(fileName)
Signature: fileName:string -> REnv

Instance members

Instance memberDescription
Environment
Signature: SymbolicExpression

Returns the underlying R environment, represented as SymbolicExpression

Get(name)
Signature: name:string -> SymbolicExpression

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

Keys
Signature: string []

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

Fork me on GitHub