required_parameters: Lookup the Details of Parameters Required by a Model
Description
This function simplifies the process of checking which parameters a given idmodelr model depends on.
It is effectively an interface to parameter_details via model_details. As
fuzzy matching has been used it can also given information of the parameter requirements of a subset of the available models.
Usage
required_parameters(model = NULL)
Value
A dataframe extracted from parameter_details containing the details of the parameters
required by the model of interest.
Arguments
model
A character string containing the name of the model of interest. Defaults to NULL.
## Check the parameters required by the "SIR_ode" modelrequired_parameters("SIR_ode")
## Use fizzy matching to look at parameters for all SIR modelsrequired_parameters("SIR")