This function sets up default parameters for a maturity module.
Usage
setup_default_Maturity(data, module_type = c("Logistic"))Arguments
- data
A
FIMSFrameobject returned from runningFIMSFrame()on your long input data.- module_type
A string specifying the type of maturity module. The available options are Logistic.
Value
A tibble containing default maturity parameters. See setup_default_parameters
for full column descriptions.
Details
The function builds module-specific defaults by calling helper functions for data, fleet, selectivity, recruitment, maturity, growth, and population components, then combines those defaults into one tibble. You can modify the returned tibble before fitting a model (for example, updating maturity and selectivity parameter values).
To create the default initial numbers at age, this function uses the defaults
from setup_default_Population() and setup_default_Recruitment(), which
are passed to setup_default_init_naa() to calculate initial numbers at age.
Examples
if (FALSE) { # \dontrun{
default_maturity_parameters <- setup_default_Maturity(
data = FIMSFrame(data_big),
module_type = "Logistic"
)
} # }
