This function uses the output of bbr_survival()
and bbr_recruitment()
to
estimate population growth (\(\lambda\)) using the Hatter-Bergerud equation
(Hatter and Bergerud, 1991). Monte Carlo simulation is used to generate
confidence limits.
bbr_growth(survival, recruitment)
A data frame generated by bbr_survival()
.
A data frame generated by bbr_recruitment()
.
A data.frame.
See the vignette("methods", package = "bbouretro")
for
descriptions of the equations used. The raw_values can be plotted using
bbr_plot_growth_distributions()
and the summary data frame can be output
using bbr_growth_summarize()
or plotted using bbr_plot_growth()
.
Hatter, Ian, and Wendy Bergerud. 1991. “Moose Recruitment, Adult Mortality and Rate of Change” 27: 65–73.
if (FALSE) { # \dontrun{
recruitment_est <- bbr_recruitment(bboudata::bbourecruit_a)
survival_est <- bbr_survival(bboudata::bbousurv_a)
growth_est <- bbr_growth(survival_est, recruitment_est)
} # }