Description Usage Arguments Value IFAR Chapter Author(s) References See Also Examples
The four-parameter growth function from Schnute (1981).
1 2 3 4 5 6 7 8 9 10 |
t |
A numeric vector of ages over which to model growth. |
case |
A string that indicates the case of the Schnute growth function to use. |
t1 |
The (young) age that corresponds to |
t3 |
The (old) age that corresponds to |
L1 |
The mean size/length at |
L3 |
The mean size/length at |
a |
A dimensionless parameter that is related to the time/age at the inflection point. |
b |
A dimensionless parameter that is related to size/length at the inflection point. |
Schnute
returns a predicted size given the case of the function and the provided parameter values.
None specifically, but 12-Individual Growth is related.
Derek H. Ogle, derek@derekogle.com
Schnute, J. 1981. A versatile growth model with statistical stable parameters. Canadian Journal of Fisheries and Aquatic Sciences 38:1128-1140.
See vbFuns
, GompertzFuns
, RichardsFuns
, logisticFuns
, and SchnuteRichards
for similar functionality for other models.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## See the formulae
growthFunShow("Schnute",1,plot=TRUE)
growthFunShow("Schnute",2,plot=TRUE)
growthFunShow("Schnute",3,plot=TRUE)
growthFunShow("Schnute",4,plot=TRUE)
## Simple examples
ages <- 1:15
s1 <- Schnute(ages,case=1,t1=1,t3=15,L1=30,L3=400,a=0.3,b=1)
s2 <- Schnute(ages,case=2,t1=1,t3=15,L1=30,L3=400,a=0.3,b=1)
s3 <- Schnute(ages,case=3,t1=1,t3=15,L1=30,L3=400,a=0.3,b=1)
s4 <- Schnute(ages,case=4,t1=1,t3=15,L1=30,L3=400,a=0.3,b=1)
plot(s1~ages,type="l",lwd=2)
lines(s2~ages,lwd=2,col="red")
lines(s3~ages,lwd=2,col="blue")
lines(s4~ages,lwd=2,col="green")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.