Growth models | R Documentation |
Functions to model fish growth.
Von Bertalanffy growth model.
Inverse Von Bertalanffy growth model.
Gompertz growth model.
Richards growth model.
vonbert(linf, k, t0, age)
ivonbert(linf, k, t0, len)
gompertz(linf, a, k, age)
richards(linf, k, b, m, age)
linf |
Asymptotic length. |
k |
Growth coefficient. |
t0 |
Theoretical age at length zero. |
age |
Vector of ages for which to calculate lengths. |
len |
Vector of lengths for which to calculate ages. |
a |
Parameter a. |
b |
Parameter b. |
m |
Parameter m. |
This group of functions provides different growth models commonly used in fisheries science.
A vector of lengths corresponding to the given ages.
A vector of ages corresponding to the given lengths.
A vector of lengths corresponding to the given ages.
A vector of lengths corresponding to the given ages.
data(ple4)
vonbert(linf = 35, k = 0.352, t0 = -0.26, age = 1:14)
vonbert
vonbert(linf = 35, k = 0.352, t0 = -0.26, age = 1:14)
ivonbert(35, 0.352, -0.26, 1:34)
gompertz(linf = 179.13, k = 0.4088, a = 1.7268, age = 1:12)
richards(linf = 178.63, k = 0.424, b = -7.185, m = 2880.4, age = 1:12)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.