What MPs may be run (best case scenario) for various data-availability scenarios and management constraints?
Fease(
Data = NULL,
TAC = TRUE,
TAE = TRUE,
SL = TRUE,
Spatial = TRUE,
names.only = TRUE,
msg = TRUE,
include.ref = FALSE
)
An object of class 'Data'. Optional. If Data object is included, the returned MPs are both feasible (in terms of management) and possible (sufficient data to run MP)
Logical. Are catch limits feasible for this fishery?
Logical. Are effort controls feasible for this fishery?
Logical. Are size-selectivity regulations (either gear changes or size-retention regulations) feasible for this fishery?
Logical. Are spatial closures feasible for this fishery?
Logical. Should only the names of the feasible MPs be returned (default)? If FALSE, a data frame with MP name, and two columns of logical values: Can (possible given data) and Fease (feasible given management constraints) is returned
Logical. Should messages be printed to the console?
Logical. Should reference MPs (e.g. FMSYref) be included as feasible methods? Default is FALSE
Either a vector of MP names that are feasible for the fishery (default) or a 3 column data frame (names.only=FALSE
).
if (FALSE) {
Fease(TAC=FALSE)
Fease(SL=FALSE, Spatial=FALSE)
Fease(Atlantic_mackerel, TAE=FALSE, names.only=FALSE)
}