bh | R Documentation |
bh implements the Beverton-Holt stock recruitment equation R = a x B/(b + B), where R is the recruitment, a and b are the parameters and B is the spawning biomass. In this parameterization, a is the maximum recruitment level and b is the biomass required to generate 0.5 x maximum recruitment. An common alternative parameterization is to use R = S/(alpha + beta x S). Do not confuse a with alpha and b with beta!
bh(p, B)
p |
a vector of the a and b parameters |
B |
a vector, possibly of length 1, of spawning biomass levels |
a vector, the same length as B, of the predicted recruitment(s)
B <- 1:3000
rec <- bh(c(1000,200),B)
plot1(B,rec,xlab="SpB",ylab="Recruitment",lwd=2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.