# Compute reproductive output using the step model
model_fecundity(age = 0:20, params = c(A = 10), maturity = 2, model = "step")
# Compute reproductive output using the logistic model
model_fecundity(
age = 0:20, params = c(A = 10, k = 0.5, x_m = 8), maturity =
0, model = "logistic"
)
# Compute reproductive output using the von Bertalanffy model
model_fecundity(
age = 0:20, params = c(A = 10, k = .3), maturity = 2, model =
"vonbertalanffy"
)
# Compute reproductive output using the normal model
model_fecundity(
age = 0:20, params = c(A = 10, mu = 4, sd = 2), maturity = 0,
model = "normal"
)
# Compute reproductive output using the Hadwiger model
model_fecundity(
age = 0:50, params = c(a = 0.91, b = 3.85, C = 29.78),
maturity = 0, model = "hadwiger"
)
model_reproduction(age = 0:20, params = c(A = 10), maturity = 2, model = "step")
model_fertility(age = 0:20, params = c(A = 10), maturity = 2, model = "step")
Run the code above in your browser using DataLab