Check that all of the settings are in the list

get_settings(mydir = NULL, settings = NULL)

Arguments

mydir

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").

settings

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.

Value

A list of settings for running model diagnostics.

Author

Chantel Wetzel & Kelli Faye Johnson

Examples

if (FALSE) { # \dontrun{
get_settings(
  mydir = "directory",
  settings = list("Njitter" = 10)
)
} # }