brody | R Documentation |
Computes the Brody growth model and its inverse
y(t) = \alpha - (\alpha - w_0) exp(- k t)
brody(t, alpha, w0, k)
brody.inverse(x, alpha, w0, k)
t |
time |
alpha |
upper asymptote |
w0 |
the value at t = 0 |
k |
growth rate |
x |
size |
Daniel Rodriguez
M. M. Kaps, W. O. W. Herring, and W. R. W. Lamberson, "Genetic and environmental parameters for traits derived from the Brody growth curve and their relationships with weaning weight in Angus cattle.," Journal of Animal Science, vol. 78, no. 6, pp. 1436-1442, May 2000.
growth <- brody(0:10, 10, 5, 0.3)
# Calculate inverse function
time <- brody.inverse(growth, 10, 5, 0.3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.