Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

generalisedLogistic

Generalised Logistic growth model


Description

Computes the Generalised Logistic growth model

y(t) = A + (U - A)/(1 + β * exp(-k * (t- t_0)))

Usage

generalisedLogistic(t, A, U, k, beta, t0)

  generalisedLogistic.inverse(x, A, U, k, beta, t0 = 0)

Arguments

t

time

x

size

A

the lower asymptote

U

the upper asymptote

k

growth range

beta

growth range

t0

time shift (default 0)

References

http://en.wikipedia.org/wiki/Generalised_logistic_function

Examples

growth <- generalisedLogistic(0:10, 5, 10, 0.3, 0.5, 3)
# Calculate inverse function
time <- generalisedLogistic.inverse(growth, 5, 10, 0.3, 0.5, 3)

growthmodels

Nonlinear Growth Models

v1.2.0
GPL-3
Authors
Daniel Rodriguez Perez
Initial release
2013-11-23

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.