View source: R/module-param-check.R
paramCheckOtherMods | R Documentation |
This function is intended to be part of module code and will test whether
the value of a parameter within the current module matches the value of the
same parameter in other modules. This is a test for parameters that might expect
to be part of a params = list(.globals = list(someParam = "test"))
passed to simInit()
.
paramCheckOtherMods(
sim,
paramToCheck,
moduleToUse = "all",
ifSetButDifferent = c("error", "warning", "message", "silent"),
verbose = getOption("reproducible.verbose")
)
sim |
A |
paramToCheck |
A character string, length one, of a parameter name to check and compare between the current module and one or more or all others |
moduleToUse |
A character vector of module names to check against. This can be
|
ifSetButDifferent |
A character string indicating whether to |
verbose |
Logical or Numeric, follows |
It is considered a "fail" under several conditions:
current module has a value that is not NULL
or "default"
and another module
has a different value;
there is more than one value for the paramToCheck
in the other modules,
so it is ambiguous which one to return.
Either the current module is different than other modules, unless it is "default" or NULL.
If the value of the paramToCheck
in the current module is either NULL
or
"default"
, and there is only one other value across all modules named in moduleToUse
,
then this will return a character string with the value of the single parameter value
in the other module(s).
It will return the current value if there are no other modules with the same parameter.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.