lambda_PM: Lambda estimates using Slade et al's 1998 PM approach

View source: R/lambda_PM.R

lambda_PMR Documentation

Lambda estimates using Slade et al's 1998 PM approach

Description

A calculation of the finite rate of increase (lambda) using the Slade et al (1998) "PM" model. The model is based on age of first reproduction, number of female offspring per female, maximum age of reproduction, and two pieces of empirical survival data: 1) the juvenile survival rate through to adulthood, and 2) annual survival rate for adults.

The method is equivalent to the finite rate of increase produced by a population projection matrix under the assumptions of a pality at maximum age.

Usage

lambda_PM(a, b, w, la, p)

Arguments

a

Age of first reproduction

b

Number of female offspring per female

w

Maximum age of reproduction

la

Survival rate of juveniles through to adulthood (not annual survival rate)

p

Annual survival rate of adults

Details

The function is an implementation of the Slade et al (1998) equation which provides a more accurate estimate of the finite rate of increase for animal populations compared to that of Cole (1954) or Robinson and Redford (1991).

Value

Returns an estimate of the finite rate of increase for a given poopulation based on the juvenile survival rate through to adulthood, and the adult annual survival rate.

Author(s)

Nathan Whitmore

References

Slade, N. A., Gomulkiewicz, R., & Alexander, H. M. (1998). Alternatives to Robinson and Redford's method of assessing overharvest from incomplete demographic data. Conservation Biology, 12(1), 148-155.

Examples

# e.g. life history data from Ochotona princeps (Slade et al. 1998)

lambda_PM(
  a = 1, # age of first reproduction,
  b = 3.25, # number of female offspring per female,
  w = 6, # max age of reproduction,
  la = 0.11, # survival rate to adult (not annual),
  p =0.7  # annual survival rate as adult
  )

NathanWhitmore/harvest documentation built on Feb. 15, 2023, 2:28 p.m.