janoschek | R Documentation |
Computes the Janoschek growth model and its inverse
y(t) = \alpha *(\alpha - \beta) \exp(-b * t^c))
janoschek(t, alpha, beta, b, c)
janoschek.inverse(x, alpha, beta, b, c)
t |
time |
alpha |
upper asymptote |
beta |
lower asymptote |
b |
growth parameter |
c |
shape parameter |
x |
size |
Daniel Rodriguez
Michael J. Panik, "Growth Curve Modeling: Theory and Applications", John Wiley & Sons, December 2013.
growth <- janoschek(0:10, 10, 2, 0.5, 2)
# Calculate inverse function
time <- janoschek.inverse(growth, 12, 2, 0.5, 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.