Description Usage Arguments Value References Examples
srrBH
describes stock-recruitment relationship
as the number of recruits resulting from a given spawning biomass.
1 |
rmax |
maximum recruitment level |
beta |
parameter describing steepness of relationship. Specifically,
|
SB |
spawning biomass of the adult population |
Number of recruited individuals
Beverton, R. J., Holt, S. J., 1957. On the dynamics of exploited fish populations
1 2 3 4 5 6 7 8 9 10 | SB <- seq(0,1e11,,100)
rmax = 2e8
beta = 1e10
Nrecr <- srrBH(rmax, beta, SB)
plot(SB, Nrecr, t="l", ylim=c(0, rmax))
abline(h=rmax, lty=2, col=8)
lines(x=c(0, beta, beta), y=c(rmax/2, rmax/2, 0), lty=2, col=8)
text(x=0, y=rmax*0.95, labels="rmax", col=8, pos=4)
text(x=beta, y=rmax/2, labels="rmax/2", pos=4, col=8)
text(x=beta, y=0, labels="beta", pos=4, col=8)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.