distrModOptions
you can inspect and change
the global variables of the package distrModOptions(...)
getdistrModOption(x)
distrModoptions(...)
distrModoptions()
returns a list of the global options of
distrModoptions("show.details")
returns the global option
show.details
as a list of length 1.
distrModoptions("show.details" = "minimal")
sets the value of the
global option show.details
to "minimal"
.
getdistrModOption("show.details")
the current value set for
option show.details
.distrModoptions
is
just a synonym to distrModoptions
.distrModoptions()
with no arguments returns a list
with the current values of the options. To access the value of a single
option, one should use getdistrModOption("show.details")
,
e.g., rather than distrModoptions("show.details")
which is
a list of length one.options
, getOption
,
distroptions
, getdistrOption
distrModoptions()
distrModoptions("show.details")
distrModoptions("show.details" = "maximal")
distrModOptions("show.details" = "minimal")
# or
getdistrModOption("show.details")
Run the code above in your browser using DataLab