Skip to contents

Discrete exponential growth model

Usage

run_discrete_exponential_model(N0 = 1, lambda = 1.1, time = 100)

Arguments

N0

initial population size of population

lambda

discrete population growth rate

time

Number of time steps over which to project the model

Value

A data frame with columns time and Nt

See also

run_exponential_model() for simulation exponential growth in continuous time, and see run_discrete_logistic_model(), run_beverton_holt_model(), and run_ricker_model() for discrete time models with population regulation

Examples

run_discrete_exponential_model(N0 = 1, lambda = 1.1, time = 10)
#>    time       Nt
#> 1     0 1.000000
#> 2     1 1.100000
#> 3     2 1.210000
#> 4     3 1.331000
#> 5     4 1.464100
#> 6     5 1.610510
#> 7     6 1.771561
#> 8     7 1.948717
#> 9     8 2.143589
#> 10    9 2.357948
#> 11   10 2.593742