poppar: Population parameters from life table

Description Usage Arguments Details Value Note Author(s) References See Also Examples

View source: R/poppar.R

Description

This function gives various point estimates of current population growth.

Usage

1
poppar(pop, K)

Arguments

pop

A 3 column table containing age, abundance at each life stage, whether relative or absolute, and offspring produced at life stage.

K

Estimated carrying capacity of the environment where the represented population lives.

Details

K, carrying capacity, is optional. If it is not provided it is assumed the observed growth is not constrained by the population density.

Value

A vector containing R0, Tc, r, and birth-ex: current population growth, average generation time, intrinsic population growth and life expectancy at birth (if age 0 is at the top of a given table and life stages are separated by a constant interval, e.g. 1 year) all expressed in the given time unit.

Note

Calculation of estimated parameters:

R0 = <ce><a3>(lx * bx)

Gc = <ce><a3>(lx * bx * x) / R0

r(1) = ln(R0) / Gc

r(2) = ((dN / dt) * K) / (N * (K - N))

ex = Tx / lx

Where R0 is the basic reproduction rate, lx proportion of living individuals at age x compared to age 0, bx numbers of offspring produced by individual at age x, Gc the average generation length, x the age in a given time unit, r the instantaneous multiplication rate, defined without or with K, Tx is a sum of proportion of individuals surviving at the midpoint of present life stage (here age 0) and future life stages and ex is the expected life length at age 0.

Some other needed values:

lx = Ni / N0

bx = Noi / Ni

Lx = (lxi + lxi + 1) / 2

Tx = <ce><a3> Lx

Ni is the number of individuals at a particular life stage, Noi is the offspring produced at a particular life stage and Lx is the proportion of individual survival for midpoints of all life stages.

Author(s)

<c3><96>lvir Styrmisson

References

Elzinga, C. Laboratory Manual for Honors Organismal Biology, Michican State University. Retrieved from https://msu.edu/course/lbs/158h/manual.html, February 2019.

Krebs, C. J. (2009). Ecology. San Francisco, Pearson.

See Also

MortalityTables

LifeTables

Examples

1
2
3
4
5
pop <- cbind(0:5,
             sort(runif(6,0,10), decreasing=TRUE),
             sort(c(0, 0, 0, runif(3,0,12))))
poppar(pop)
poppar(pop, 50)

arnima-github/biometry2 documentation built on May 26, 2019, 6:44 p.m.