model_information {calmr} | R Documentation |
An assortment of functions to return model information.
supported_models()
supported_optimizers()
supported_families()
supported_plots(model = NULL)
get_model(model)
parameter_info(model = NULL)
model_outputs(model = NULL)
model |
A string specifying a model. One from |
supported_models()
returns a character vector.
supported_optimizers()
returns a character vector.
supported_families()
returns a character vector.
supported_plots()
returns a character vector or list
(if model is NULL).
get_model()
returns a model function.
parameter_info()
returns a list or a
list of lists (if model is NULL).
model_outputs()
returns a character vector or
list (if model is NULL).
# Outputs and plots supported by the RW1972 model
model_outputs("RW1972")
# Getting the model function implementing the PKH1982 model
pkh_func <- get_model("PKH1982")
head(pkh_func, 10)
# Getting the parameters required by SM2007
parameter_info("SM2007")