FRAMES NO FRAMES | |||||||
| |||||||
SUMMARY: IMPORT | CONSTANT | FIELD | ACTION | DETAIL: IMPORT | CONSTANT | FIELD | ACTION |
Action summary | |
---|---|
void |
close() Close the R connection. |
any |
evaluate(string value) Evaluate a string as some R script returning an any type. The return type is generic, the client must process the return type. The type would depend on what R returned (i.e. could be multi-dimensional matrix). |
boolean |
evaluateAsBoolean(string value) Evaluate a string as some R script returning a boolean. The return type is boolean if the object returned by R is of boolean type, otherwise it will throw CastException. |
float |
evaluateAsFloat(string value) Evaluate a string as some R script returning a float. The return type is float if the object returned by R is of float type, otherwise it will throw CastException. |
sequence<float> |
evaluateAsFloatSequence(string value) Evaluate a string as some R script returning a sequence of floats. The return type is sequence of floats if the object returned by R is of float array type, otherwise it will throw CastException. |
integer |
evaluateAsInteger(string value) Evaluate a string as some R script returning an integer. The return type is integer if the object returned by R is of integer type, otherwise it will throw CastException. |
sequence<integer> |
evaluateAsIntegerSequence(string value) Evaluate a string as some R script returning a sequence of integers. The return type is sequence of integers if the object returned by R is of integer array type, otherwise it will throw CastException. |
string |
evaluateAsString(string value) Evaluate a string as some R script returning a string. The return type is string if the object returned by R is of string type, otherwise it will throw CastException. |
void |
evaluateVoid(string value) Evaluate a string as some R script. |
void |
set(string name, any value) Set an R value. |
Action detail |
---|
void close()Close the R connection.
any evaluate(string value)Evaluate a string as some R script returning an any type. The return type is generic, the client must process the return type. The type would depend on what R returned (i.e. could be multi-dimensional matrix).
boolean evaluateAsBoolean(string value)Evaluate a string as some R script returning a boolean. The return type is boolean if the object returned by R is of boolean type, otherwise it will throw CastException.
float evaluateAsFloat(string value)Evaluate a string as some R script returning a float. The return type is float if the object returned by R is of float type, otherwise it will throw CastException.
sequence<float> evaluateAsFloatSequence(string value)Evaluate a string as some R script returning a sequence of floats. The return type is sequence of floats if the object returned by R is of float array type, otherwise it will throw CastException.
integer evaluateAsInteger(string value)Evaluate a string as some R script returning an integer. The return type is integer if the object returned by R is of integer type, otherwise it will throw CastException.
sequence<integer> evaluateAsIntegerSequence(string value)Evaluate a string as some R script returning a sequence of integers. The return type is sequence of integers if the object returned by R is of integer array type, otherwise it will throw CastException.
string evaluateAsString(string value)Evaluate a string as some R script returning a string. The return type is string if the object returned by R is of string type, otherwise it will throw CastException.
void evaluateVoid(string value)Evaluate a string as some R script.
void set(string name, any value)Set an R value.
FRAMES NO FRAMES | |||||||
| |||||||
SUMMARY: IMPORT | CONSTANT | FIELD | ACTION | DETAIL: IMPORT | CONSTANT | FIELD | ACTION |