select {TropFishR} | R Documentation |
Selectivity model
Description
This function estimates the selecitvity of gillnets and trawl nets from experimental catches.
Usage
select(param, plot = FALSE)
Arguments
param |
a list with following parameters:
|
plot |
logical; should the results be displayed graphically? |
Details
This function estimates the fractions retained by each net, the optimum lengths for each net, the selection factor (SF), and the standard deviation of the factor (stand.dev). Calculations are based on a normal distribution with common spread. Assumptions of this method are, that (i) the optimum length Lm is proportional to the mesh size (Lm = SF * m), (ii) the selection curves are normally distributed with a common standard deviation, (iii) the nets have the same fishing power (same dimensions and material). Requirements for the experimental set-up are: selection curves corresponding to the two mesh sizes have to overlap, and the nets have to be set in the same area, during the same time. To calculate selection factor (SF), L25, L50 and L75 for trawl nets /fisheries.
Value
A list with the input parameters and following list objects for type = "gillnet": #'
-
classes.num: numeric vector with length classes without a plus group,
-
SNet1: selection ogive net 1,
-
SNet2: selection ogive net 2,
-
lnNet2_Net1: logarithm ratio between nets,
-
linear_mod: linear model,
-
LmNet1: optimum length net 1,
-
LmNet2: optimum length net 2,
-
SF: selection factor,
-
stand.dev: standard deviation of selection factor.
and following objects for type = "trawl_net":
-
classes.num: numeric vector with length classes,
-
SLobs: observed selection ogive,
-
SLest: estimated selection ogive,
-
lnSL: logarithm of observed selection,
-
linear_mod: linear model,
-
S1: constant of selection curve,
-
S2: another constant of selection curve,
-
L25: length at which 25
-
L50: length at which 50
-
L75: length at which 75
-
SF: selection factor.
References
Sparre, P., Venema, S.C., 1998. Introduction to tropical fish stock assessment. Part 1. Manual. FAO Fisheries Technical Paper, (306.1, Rev. 2). 407 p.
Examples
# Gillnet selectivity
data(tilapia)
out <- select(param = tilapia)
plot(out)
# Trawl selectivity
data(bream)
select(bream)