
Last chance! 50% off unlimited learning
Sale ends in
Calculates the generation time for an age or stage-classified demographic projection matrix.
gen.time(A, peryear = 5)
demographic projection matrix
width of the age classes
The generation time implied by the demographic projection matrix.
Calculates the generation time (T) for an age or stage-classified demographic projection matrix using the identity
where
Generation time is the amount of time that it takes a typical female
to produce
Keyfitz, N., and H. Caswell. 2005. Applied mathematical demography. 3rd ed. New York: Springer.
Caswell, H. 2001. Matrix population models: Construction, analysis, and interpretation. 2nd ed. Sunderland, MA: Sinauer.
Preston, S.H., P. Heuveline, and F. Guillot. 2001. Demography: Measuring and modeling population processes. Oxford: Blackwell.
# NOT RUN {
## compare generation times from two populations with very different
## R_0 values
data(goodman)
ven <- with(goodman, life.table(x=age, nKx=ven.nKx, nDx=ven.nDx))
ven.mx <- with(goodman, ven.bx/ven.nKx)
A <- leslie.matrix(lx=ven$nLx,mx=ven.mx)
usa <- with(goodman, life.table(x=age, nKx=usa.nKx, nDx=usa.nDx))
usa.mx <- with(goodman, usa.bx/usa.nKx)
B <- leslie.matrix(lx=usa$nLx,mx=usa.mx)
gen.time(A)
gen.time(B)
# }
Run the code above in your browser using DataLab