| distrSimoptions {distrSim} | R Documentation |
With distrSimoptions and getdistrSimOption you may inspect and change the global
variables used by package distrSim.
distrSimoptions(...) getdistrSimOption(x)
... |
any options can be defined, using name = value or by passing a list of such tagged values. |
x |
a character string holding an option name. |
Invoking distrSimoptions() with no arguments returns a list with the current values of the options.
To access the value of a single option, one should use getdistrSimOption("MaxNumberofSummarizedRuns"),
e.g., rather than distroptions("MaxNumberofSummarizedRuns") which is a list of length one.
distrSimoptions() returns a list of the global options of distrSim.
distrSimoptions("MaxNumberofSummarizedRuns") returns the global option MaxNumberofSummarizedRuns as a list of length 1.
distrSimoptions("MaxNumberofSummarizedRuns" = 3) sets the value of the global option MaxNumberofSummarizedRuns to 3.
getdistrSimOption("MaxNumberofSummarizedRuns") the current value set for option MaxNumberofSummarizedRuns.
Peter Ruckdeschel Peter.Ruckdeschel@uni-bayreuth.de
options, getOption,
distroptions, getdistrOption
distrSimoptions()
distrSimoptions("MaxNumberofPlottedObsDims")
distrSimoptions("MaxNumberofPlottedObsDims" = 5)
# or
getdistrSimOption("MaxNumberofPlottedObsDims")