logistic | R Documentation |
Computes the Logistic growth model
y(t) = \frac{\alpha}{1 + \beta exp(-k t)}
logistic(t, alpha, beta, k)
logistic.inverse(x, alpha, beta, k)
t |
time |
alpha |
upper asymptote |
beta |
growth range |
k |
growth rate |
x |
size |
Daniel Rodriguez
D. Fekedulegn, M. Mac Siurtain, and J. Colbert, "Parameter estimation of nonlinear growth models in forestry," Silva Fennica, vol. 33, no. 4, pp. 327-336, 1999.
growth <- logistic(0:10, 10, 0.5, 0.3)
# Calculate inverse function
time <- logistic.inverse(growth, 10, 0.5, 0.3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.