View source: R/single_population_continuous.R
run_logistic_model | R Documentation |
Run logistic growth model
run_logistic_model(
time = 0:10,
init = c(N1 = 1),
params = c(r = 0.15, K = 1000)
)
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 |
vector of intrinsic growth rate, carrying capacity and, if
simulating a lagged-logistic model, |
run_exponential_model()
for simulating the dynamics of a
population with no carrying capacity, and run_discrete_logistic_model()
,
run_beverton_holt_model()
, and run_ricker_model()
for discrete-time
models of population growth with population regulation
run_logistic_model(time = 0:10, init = c(N1 = 1), params = c(r = .15, K = 1000))
run_logistic_model(time = 10, init = c(N1 = 1), params = c(r = .15, K = 1000))
run_logistic_model(time = 0:10, init = c(N1 = 1), params = c(r = .15, K = 1000, tau = 2.1))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.