distrTEstoptions {distrTEst} | R Documentation |
With distrTEstoptions
and getdistrTEstOption
you may inspect and change the global
variables used by package distrTEst.
distrTEstoptions(...) getdistrTEstOption(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 distrTEstoptions()
with no arguments returns a list with the current values of the options.
To access the value of a single option, one should use getdistrTEstOption("MaxNumberofSummarizedEvaluations")
,
e.g., rather than distrTEstoptions("MaxNumberofSummarizedEvaluations")
which is a list of length one.
distrTEstoptions()
returns a list of the global options of distrTEst.
distrTEstoptions("MaxNumberofSummarizedEvaluations")
returns the global option MaxNumberofSummarizedEvaluations
as a list of length 1.
distrTEstoptions("MaxNumberofSummarizedEvaluations" = 3)
sets the value of the global option MaxNumberofSummarizedEvaluations
to 3.
getdistrTEstOption("MaxNumberofSummarizedEvaluations")
the current value set for option MaxNumberofSummarizedEvaluations
.
Peter Ruckdeschel Peter.Ruckdeschel@itwm.fraunhofer.de
options
, getOption
,
distroptions
, getdistrOption
distrTEstoptions() distrTEstoptions("MaxNumberofPlottedEvaluationDims") distrTEstoptions("MaxNumberofPlottedEvaluationDims" = 5) # or getdistrTEstOption("MaxNumberofPlottedEvaluationDims")