Provides a summary of yearly population growth (\(\lambda\)) estimates from simulations.
Format
The return object has these columns:
- PopulationName
Population name
- Year
Year sampled
- S
Estimated survival
- R
Estimated recruitment
- estimate
Estimated population growth (lambda)
- se
SE
- lower
Percentile 95% confidence limits
- upper
Percentile 95% confidence limits
- prop_lgt1
Proportion simulations where lambda>1
- mean_sim_survival
Mean simulated survival value
- mean_sim_recruitment
Mean simulated recruitment value
- mean_sim_growth
Mean simulated population growth (lambda) value
- median_sim_growth
Median simulated population growth (lambda) value
Arguments
- growth
A data frame generated by
bbr_growth()
.
Examples
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)
bbr_growth_summarize(growth_est)
} # }