| juliaOptions {XRJulia} | R Documentation |
Get and/or Set Internal Option Parameters in the Julia Evaluator
Description
The Julia code for an evaluator maintains a dictionary, RJuliaParams, of named parameters used to control
various evaluation details. These and any other desired options can be queried and/or set by calls to juliaOptions.
Usage
juliaOptions(..., .ev = XRJulia::RJulia())
Arguments
... |
arguments to the corresponding method for an evaluator object. |
.ev |
The evaluator object to use. By default, and usually, the current evaluator. |
Details
The function behaves essentially like the options() function in R itself, returning a list of the current entries
corresponding to unnamed character arguments and setting the parameters named to the value in the corresponding named argument
to juliaOptions.
If no parameter corresponding to a name has been set, requesting the corresponding returned value is nothing, NULL in R.
Value
A named list of those parameters requested (as unnamed character string arguments). If none, an empty list. Note that options are always returned converted to R, not as proxyies.