logistic_delay: Delayed Logistic Growth Model

Description Usage Arguments Value Examples

View source: R/logistic_delay.R

Description

Delayed Logistic Growth Model

Usage

1
logistic_delay(time, init_n, r, k, tau)

Arguments

time

Vector of time points at which to evaluate system

init_n

Initial population abundance

r

Per-capita growth rate

k

Population carrying capacity

tau

Time lag of density-dependent feedback

Value

Data frame with two columns:

Time Same values and units as argument time
Abundance Abundance of population at given time

Examples

1
2
t <- seq(0, 50, 0.1)
logistic_delay(time = t, init_n = 450, r = 1.1, k = 500, tau = 1.12)

patrickbarks/popmods documentation built on May 21, 2019, 2:07 p.m.