Learn R Programming

primer (version 0.1)

DemoInfo: Demographic Analyses

Description

Given a demographic projection matrix (aka transition matrix), this calculates $\lambda$, stable age/stage structure, reproductive value, sensitivity, and elasticity.

Usage

DemoInfo(mat)

Arguments

mat
A matrix of demographic transitions (Leslie [age] or Lefkovitch [stage] matrix)

Value

  • Returns a list with these components.
  • lambdaA scalar, long term asymptotic growth rate.
  • SSDA vector of stable age/stage structure
  • RVA vector of reproductive value
  • SensitivitiesA matrix of sensitivities
  • ElasticitiesA matrix of elasticities
  • PPMA population projection matrix

References

H. Caswell.2001. Matrix Population Models: Construction, Analysis, and Interpretation. Sinauer Associates, Inc., Sunderland, MA, USA, 2nd ed. edition.

S.P. Ellner and J. Guckenheimer. 2006. Dynamic Models in Biology. Princeton University Press.

M.H.H. Stevens. 2009. A Primer of Ecology with R. Use R! Series. Springer.

See Also

DemoBoot, ProjMat,

Examples

Run this code
### A two stage annual transition matrix
annual <- matrix( c( 0, 100, .025, 0), byrow=TRUE, nrow=2)
### Generate useful summaries
DemoInfo(annual)

Run the code above in your browser using DataLab