-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathmatchYields.Rd
59 lines (55 loc) · 2.45 KB
/
matchYields.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/match.R
\name{matchYields}
\alias{matchYields}
\title{Match yields to observations}
\usage{
matchYields(params, species = NULL)
}
\arguments{
\item{params}{A MizerParams object}
\item{species}{The species to be affected. Optional. By default all observed
yields will be matched. A vector of species names, or a numeric vector
with the species indices, or a logical vector indicating for each species
whether it is to be affected (TRUE) or not.}
}
\value{
A MizerParams object
}
\description{
\ifelse{html}{\href{https://lifecycle.r-lib.org/articles/stages.html#deprecated}{\figure{lifecycle-deprecated.svg}{options: alt='[Deprecated]'}}}{\strong{[Deprecated]}}
This function has been deprecated and will be removed in the future unless
you have a use case for it. If you do have a use case for it, please let the
developers know by creating an issue at
\url{https://github.com/sizespectrum/mizer/issues}.
}
\details{
If you want to match the yields to observations, you should use the
matchYield() function from the mizerExperimental package instead, which
adjusts the catchability to match the yield rather than by adjusting the
biomass.
The function adjusts the abundances of the species in the model so that their
yearly yields under the given fishing mortalities match with observations.
The function works by multiplying for each species the abundance density
at all sizes by the same factor. This will of course not give a steady
state solution, even if the initial abundance densities were at steady state.
So after using this function you may want to use \code{steady()} to run the model
to steady state, after which of course the yields will no longer match
exactly. You could then iterate this process. This is described in the
blog post at https://bit.ly/2YqXESV.
Before you can use this function you will need to have added a
\code{yield_observed} column to your model which gives the observed yields in
grams per year. For species for which you have no observed biomass, you
should set the value in the \code{yield_observed} column to 0 or NA.
}
\examples{
params <- NS_params
species_params(params)$yield_observed <-
c(0.8, 61, 12, 35, 1.6, 20, 10, 7.6, 135, 60, 30, 78)
gear_params(params)$catchability <-
c(1.3, 0.065, 0.31, 0.18, 0.98, 0.24, 0.37, 0.46, 0.18, 0.30, 0.27, 0.39)
params <- calibrateYield(params)
params <- matchYields(params)
plotYieldObservedVsModel(params)
}
\concept{deprecated}