View source: R/single_population_continuous.R
run_exponential_model | R Documentation |
Run exponential growth model
run_exponential_model(time = 10, init = c(N1 = 1), params = c(r = 0.1))
time |
vector of time units over which to run model, starting from 0.
|
init |
initial population size of population, in a vector with name |
params |
intrinsic growth rate r, in a vector with name |
run_logistic_model()
for simulating the dynamics of a population
with logistic growth to a carrying capacity, and
run_discrete_exponential_model()
for a simulating exponential growth in
discrete time
run_exponential_model(time = 0:10, init = c(N1 = 1), params = c(r = .1))
run_exponential_model(time = 10, init = c(N1 = 1), params = c(r = .1))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.