Check that all of the settings are in the list
get_settings(mydir = NULL, settings = NULL)
Directory where model files are located.
There is no default entry for mydir
.
An example of user input could be
mydir = file.path("C:/my_models", "base_model")
.
A list of the current settings where each object in the list
must be named. Those names that are not found in the stored list will be
added. The default value of NULL
leads to a full list being
returned.
A list of settings for running model diagnostics.
if (FALSE) { # \dontrun{
get_settings(
mydir = "directory",
settings = list("Njitter" = 10)
)
} # }